AI智能
改变未来

shell脚本的一些简单题


猜数字

vim num.sh#/bin/bashnum=`expr $RANDOM % 100`echo $numkong=0while :doread -p \"请输入要比较的数字:\" shuecho $shulet kong++if [ $shu -gt $num ];thenecho \"猜大了\"elif [ $shu -lt $num ];thenecho \"猜小了\"elseecho \"猜对了\"echo \"共猜了$kong次\"breakfidone

域名监控

vim ip.sh#/bin/bashcheck_website(){web=($(cat yuming))for i in ${web[@]}docode=$(curl -I -m 1 -o /dev/null -s -w %{http_code} $i)if [ $code -eq 200 ]; thenecho \"$i is ok\"elseecho \"$i is ok,please check!!\"echo \"$i is not ok,pleasecheck!!\"| mail -s \"url check\" [email protected]}while :docheck_websitesleep 2done
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » shell脚本的一些简单题