Linux shell 命令判断执行语法 ; , && , ||

// 此时存在/tmp/xxxx文件,执行了&&后面的命令
# ls /tmp/xxxx && echo '/tmp/xxxx exits'
/tmp/xxxx
/tmp/xxxx exits

// 此时存在/tmp/xxxx文件,不执行 || 后面的命令
# ls /tmp/xxxx || echo '/tmp/xxxx exits'
/tmp/xxxx

test -e /dmtsai && echo "exit" || echo "not exit"

posted @ 2015-04-21 16:24  金葵学子  阅读(281)  评论(0编辑  收藏  举报