shell脚本的日常使用

时间:2022-07-24 21:46:12

说明:该文章是日常使用shell脚本时常用命令和用法的总结,很多内容参考了其他博客,在此一并说明并感谢~


命令行中while的使用:

参考:http://blog.csdn.net/daoshuti/article/details/72831256

有时候想直接在命令行中写一个简单的监测脚步,监测某个参数的变化,可以用下面的语句:

死循环

命令格式:while : ;do <command>;done;

举例:

wanghan@ubuntu:~$ while : ;do echo "hello"; sleep 1; done;
hello
hello
hello
hello
hello
^C
wanghan@ubuntu:~$

普通计数循环

命令格式:mycount=0; while (( $mycount < 10 )); do  <command>;((mycount=$mycount+1)); done;

举例:

wanghan@ubuntu:~$ mycount=0; while (( $mycount < 10 )); do echo "mycount=$mycount"; ((mycount=$mycount+1)); done;
mycount=0
mycount=1
mycount=2
mycount=3
mycount=4
mycount=5
mycount=6
mycount=7
mycount=8
mycount=9


++++++++++++++++++++++++++++++

未完,待续。。。