码迷,mamicode.com
首页 > 系统相关 > 详细

shell中test的使用

时间:2015-07-07 19:11:11      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

#/secondin/secondfirstsh
echo “please enter two numseconder”
read first
read second
if test $first -eq $second
then echo “NO.1 = NO.2″
elif test $first -gt $second //判定其是否大于
then echo “NO.1 > NO.2″

else echo “NO.1 < NO.2″
fi
例2.查找/root/目录下是否存在该文件
#/secondin/secondfirstsh
echo “enter first file nfirstme:”
read first
if test  -e /root/$first  //其中的-e 代表存在这个文件
then echo “the file is exist!”
else echo “the file is not exist!”
fi

shell中test的使用

标签:

原文地址:http://www.cnblogs.com/haoxing990/p/4627608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!