root@localhost:~# ls /usr/bin/share ls: cannot access /usr/bin/share: No such file or directory root@localhost:~# echo $? 2 如果結束狀態不是0,說明命令執行失敗。
Q:7 在shell腳本中如何比較兩個數字 ? 答:在if-then中使用測試命令( -gt 等)來比較兩個數字,例子如下: #!/bin/bash x=10 y=20 if [ $x -gt $y ] then echo “x is greater than y” else echo “y is greater than x” fi