第 7 章 条件语句
目录
摘要
本章我们会讨论在Bash脚本中使用条件,包含以下几个话题:
-
if 语句
-
使用命令的退出状态
-
比较和测试输入和文件
-
if/then/else 结构
-
if/then/elif/else 结构
-
使用和测试位置参数
-
嵌套 if 语句
-
布尔表达式
-
使用 case 语句
Read: 914
Read: 914
A common question on the mailing lists is how to sort results in a particular order. Just use the FIELD function:
SELECT * FROM tickets
ORDER BY FIELD(priority, ‘High’, ‘Normal’, ‘Low’, ‘The Abyss’);
Read: 1200