shell(1)
1:实现shell脚本中循环调用函数
1 #!/bin/bash 2 3 output(){ 4 for(( num1=1; num1 <= 5; num1++ )) 5 do 6 echo -n "$num1 " 7 done 8 } 9 10 let "num2=1" 11 while [ "$num2" -le 5 ] 12 do 13 output 14 echo 15 let "num2=num2+1" 16 done
实现结果:
2:判断系统是否存在此文件
1 #!/bin/bash 2 #文件系统相关测试 3 4 fpath="/etcc/passwd" 5 if [ -e $fpath ];then 6 echo File exits; 7 else 8 echo Does not exits 9 fi
作者:李先生
-------------------------------------------
个性签名:在平凡中坚持前行,总有一天会遇见不一样的自己!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!
万水千山总是情,打赏一分行不行,所以如果你心情还比较高兴,也是可以扫码打赏博主,哈哈哈(っ•̀ω•́)っ✎⁾⁾!
微信公众号 微信打赏 支付宝打赏
posted on 2016-08-22 14:59 Captain_Li 阅读(236) 评论(0) 编辑 收藏 举报