wenlan88的ChinaUnix博客
wenlan88
全部博文(252)
2013年(21)
2012年(231)
ap040520
angrad
fly12345
20090302
enjoy-li
阳光里的
lujhunix
yhz22
teddy112
cynthia
丸喵喵
Bsolar
jtyu
ligang23
剑魂箫心
xiao_代
分类:
2012-06-04 14:35:28
原文地址:判断命令是否存在(在$PATH中) 作者:kevin33643
#!/bin/shcheckForCmdInPath(){ var=$1 OldIFS=$IFS IFS=":" for directory in $PATH do if [ -x $directory/${var##/*/} ] then echo "${var##/*/} found in $directory" return fi done echo "${var##/*/} not found" IFS=oldIFS}if [ $# -ne 1 ]then echo "Usage: $0 command" >&2 exit 1fi checkForCmdInPath "$1"exit 0
上一篇:mount
下一篇:实现String类的BIG_FOUR
登录 注册