今天就跟大家聊聊有关linux shell中while循环是怎样的,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。在shell中while循环也是一个常用的循环结构,和其他语言的语法有
今天就跟大家聊聊有关linux shell中while循环是怎样的,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
在shell中while循环也是一个常用的循环结构,和其他语言的语法有许多类似之处,但是也有个别地方不一样。
常用格式
while 条件;
do
语句
done
while true
do
语句
done
while :
do
语句
done
while [ 1 ]
do
语句
done
while [ 0 ]
do
语句
done
Bash代码
COUNTER=0
while [ $COUNTER -lt 10 ]; do
echo The counter is $COUNTER
let COUNTER=COUNTER+1
done
[root@jfht ~]# COUNTER=0[root@jfht ~]# while [ COUNTER> let COUNTER=COUNTER+1> doneThe counter is 0The counter is 1The counter is 2The counter is 3The counter is 4The counter is 5The counter is 6The counter is 7The counter is 8The counter is 9[root@jfht ~]#
这个while循环改用for循环更好些
Bash代码
for ((COUNTER=0; COUNTER
do
echo The counter is $COUNTER
done
[root@jfht ~]# for ((COUNTER=0; COUNTER> do> echo The counter is $COUNTER> doneThe counter is 0The counter is 1The counter is 2The counter is 3The counter is 4The counter is 5The counter is 6The counter is 7The counter is 8The counter is 9[root@jfht ~]#
Bash代码
while true
do
date
sleep 1
done
[root@jfht ~]# while true> do> date> sleep 1> done2010年 10月 10日 星期日 16:35:22 CST2010年 10月 10日 星期日 16:35:23 CST2010年 10月 10日 星期日 16:35:24 CST2010年 10月 10日 星期日 16:35:25 CST2010年 10月 10日 星期日 16:35:26 CST2010年 10月 10日 星期日 16:35:27 CSTCtrl+C[root@jfht ~]#
Java代码
while read line
do
echo $line
done
[root@jfht ~]# while read line> do> echo $line> donehellohelloworldworldCtrl+D[root@jfht ~]#
文件 while_4.sh
Bash代码
#!/bin/sh usage() { echo “usage: $0 [-a] [-e ] [-f ] [-h] [-d ] [-s] [-q] [-x]” } while getopts ae:f:hd:s:qx: option do case “${option}” in a) ALARM=”TRUE”;; e) ADMIN=${OPTARG};; d) DOMaiN=${OPTARG};; f) SERVERFILE=$OPTARG;; s) WHOIS_SERVER=$OPTARG;; q) QUIET=”TRUE”;; x) WARNDAYS=$OPTARG;; \?) usage; exit 1;; esac done echo “ALARM=$ALARM” echo “ADMIN=$ADMIN” [root@jfht ~]# cat while_4.sh#!/bin/shusage(){ echo “usage: $0 [-a] [-e ] [-f ] [-h] [-d ] [-s] [-q] [-x]”}while getopts ae:f:hd:s:qx: optiondo case “{OPTARG};; d) DOMAIN=OPTARG;; s) WHOIS_SERVER=OPTARG;; \?) usage; exit 1;; esacdoneecho “ALARM=ADMIN”[root@jfht ~]# chmod +x while_4.sh[root@jfht ~]# ./while_4.shALARM=ADMIN=[root@jfht ~]# ./while_4.sh -aALARM=TRUEADMIN=[root@jfht ~]# ./while_4.sh -e hyALARM=ADMIN=hy
看完上述内容,你们对Linux shell中while循环是怎样的有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网操作系统频道,感谢大家的支持。
--结束END--
本文标题: Linux shell中while循环是怎样的
本文链接: https://lsjlt.com/news/319743.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0