shell腳本里?
$? 上個命令的退出狀態,或函數的返回值。 例子1 :ls 命令沒有找到匹配的結果. 所以返回2 $
? 就是2[root@sg-rhel6-17 etc]# ls /tmp/*.logls: cannot access /tmp/*.log: No such file or directory[root@sg-rhel6-17 etc]# echo $?2例子2 :ls 命令找到了結果. 成功返回0 所以$? 就是0[root@sg-rhel6-17 etc]# ls /tmp/*.tmp/tmp/reminder.tmp[root@sg-rhel6-17 etc]# echo $?0
上一篇準備提一輛14T速騰
下一篇怎么取各個位的值