編輯incld.sh
echo "THIS IS INCLD.SH"
./test.sh
編輯test.sh
read -p "請輸入數(shù)字1:" a
read -p "請輸入數(shù)字2:" b
echo $a
echo $b
if test $a -eq $b
then echo "相等"
else echo "不等"
fi
read -p "請輸入字符1:" a
read -p "請輸入字符2:" b
echo $a
echo $b
if test $a -eq $b
then echo "相等"
else echo "不等"
fi
if test -e ./getStringFile
then echo "getStringFile存在"
else echo "getStringFile不存在"
fi
執(zhí)行incld.sh
/incld.sh
THIS IS INCLD.SH
請輸入數(shù)字1:1
請輸入數(shù)字2:1
1
1
相等
請輸入字符1:2
請輸入字符2:3
2
3
不等
getStringFile存在