标签:检查 文件名 bin 数值 lin style linu pac wrap
1.数值中的运用
1 #!/bin/bash 2 read -p "请输入两个数字:" num3 num4 3 if test $num3 -eq $num4 4 then 5 echo "两个数字相等" 6 else 7 echo "两个数字不相等" 8 fi
1 cd /root 2 if test -e ./xy 3 then 4 echo ‘The file already exists!‘ 5 else 6 echo ‘The file does not exists!‘ 7 fi
标签:检查 文件名 bin 数值 lin style linu pac wrap
原文地址:http://www.cnblogs.com/y15821933792/p/Linux_shell.html