Shell 的 echo 指令与 PHP 的 echo 指令类似,都是用于字符串的输出。命令格式:
echo string
可以使用echo实现更复杂的输出格式控制。
echo "it is a test" # 双引号号也可以省略 # 输出:it is a test
echo "\"it is a test\"" # 同样可以不用外面的双引号 # "it is a test"
read name echo "$name it is a test " # OK --> 标准输入 # OK it is test --> 输出
echo -e "OK! \n" # -e 开启转义 echo "it is a test" # OK! # # it is a test
echo -e "OK! \c" # -e 开启转义 \c 不换行 echo "it is a test" # OK! # it is a test
echo "it is a test" > myfile
echo '$name\"' # 输出:$name\"
echo `data` # 注意:这里使用的是反引号 ` 而不是单引号 '
read 命令的用法为:
read [-options] [variables]
options表示选项,如下表所示;variables表示用来存储数据的变量,可以有一个,也可以有多个。
options和variables都是可选的,如果没有提供变量名,那么读取的数据将存放到环境变量 REPLY 中。
Shell read 命令支持的选项
# -p 用一段文字提示用户输入 read -p "请输入你的名字:" age echo "你的年龄是: $age" # 请输入你的名字:zxs -->输入 # 你的年龄是: zxs -->输出 # -s 静默模式 -t 设置超时时间 read -p "请输入你的密码:" -s -t 5 pas printf "\n" # 换行作用,否则 echo 的输出结果会和用户输入的内容位于同一行,不容易区分。 echo "你的密码是:$pas" # 请输入你的密码: -->因为是静默模式,所以输入的密码看不到 # 你的密码是:123456 # 读取多个参数 中间用空格隔开 read -p "请输入三个参数:" name age gender echo $name $age $gender # 请输入三个参数:zxs 22 man # zxs 22 man # 判断两次输入密码是否相等 if read -t 20 -sp "请第一次输入密码:" pass1 && printf "\n" && # 第一次输入密码 read -t 20 -sp "请第二次输入密码:" pass2 && printf "\n" && # 第二次输入密码 [ $pass1 == $pass2 ]; # then echo "两次密码相同,输入真确" else echo "两次输入密码不相同" fi # 请第一次输入密码: # 请第二次输入密码: # 两次密码相同,输入真确
最后一个代码中,我们使用&&组合了多个命令,这些命令会依次执行,并且从整体上作为 if 语句的判断条件,只要其中一个命令执行失败(退出状态为非 0 值),整个判断条件就失败了,后续的命令也就没有必要执行了。
%s %c %d %f 都是格式替代符,%s 输出一个字符串,%d 整型输出,%c 输出一个字符,%f 输出实数,以小数形式输出。
%-10s 指一个宽度为 10 个字符(- 表示左对齐,没有则表示右对齐),任何字符都会被显示在 10 个字符宽的字符内,如果不足则自动以空格填充,超过也会将内容全部显示出来。
%-4.2f 指格式化为小数,其中 .2 指保留2位小数。
实例:
#!/bin/sh printf "%-10s %-8s %-4s\n" 姓名 性别 体重kg # 姓名 性别 体重kg printf "%-10s %-8s %-8.2f\n" zxs man 75.222 # zxs man 75.22 printf "%-10s %-8s %-4.2f\n" zxs 180 75.222 # zxs 180 75.22 # 可以看出中文字符比英文字符宽一倍,取几位小数与规定的小数点前面的数字无关 printf "%d %s\n" 1 "abc" # 1 abc printf '%d %s\n' 1 "abc" # 1 abc # 双引号与单引号效果相同 printf %s abcdef # abcdef printf "\n" printf %s abc def # abcdef printf "\n" printf "%s %s %s\n" a b c d e f g h i j # a b c # d e f # g h i # j printf "%s %d %f %c \n" # 0 0.000000 如果没有arguments,那么 %s 用NULL代替,%d 用 0 代替
if condition then command1 command2 ... commandN fi
if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi
if condition then command1 command2 ... commandN else command fi
if condition then command1 elif condition2 then command2 else commandN fi
if [ "$a" -gt "$b" ]; then ... fi
if (( a > b )); then ... fi
a=10 b=20 if [ $a == $b ] then echo "a 等于 b" elif [ $a -gt $b ] then echo "a 大于 b" elif [ $a -lt $b ] then echo "a 小于 b" else echo "没有符合的条件" fi # a 小于 b
a=10 b=20 if (( $a == $b )) then echo "a 等于 b" elif (( $a > $b )) then echo "a 大于 b" elif (( $a < $b )) then echo "a 小于 b" else echo "没有符合的条件" fi # a 小于 b
num1=$[2*3] num2=$[1+5] if test $[num1] -eq $[num2] then echo '两个数字相等!' else echo '两个数字不相等!' fi # 两个数字相等!
for var in item1 item2 ... itemN do command1 command2 ... commandN done
# 顺序输出当前列表中的数字 for loop in 1 2 3 4 5 do echo "The value is: $loop" done # The value is: 1 # The value is: 2 # The value is: 3 # The value is: 4 # The value is: 5 # 顺序输出字符串中的字符 for str in This is a string do echo $str done # This # is # a # string
while 循环用于不断执行一系列命令,也用于从输入文件中读取数据。其语法格式为:
while condition do command done
int=1 while (( $int<=5 )) do echo $int let "int++" done # 1 # 2 # 3 # 4 # 5
echo '按下 退出' echo -n '输入你最喜欢的网站名:' while read FILM do echo "是的!$FILM 是一个好网站" done # 按下 退出 # 输入你最喜欢的网站名:百度 # 是的!百度 是一个好网站
while: do command done
或者
while true do command done
或者
for (( ; ; ))
until 循环执行一系列命令直至条件为 true 时停止。
until 循环与 while 循环在处理方式上刚好相反。
一般 while 循环优于 until 循环,但在某些时候—也只是极少数情况下,until 循环更加有用。
until 语法格式:
until condition do command done
a=0 until [ ! $a -lt 10 ] do echo $a a=`expr $a + 1` done # 0 # 1 # 2 # 3 # 4 # 5 # 6 # 7 # 8 # 9
case 值 in 模式1) command1 command2 ... commandN ;; 模式2) command1 command2 ... commandN ;; esac
echo '输入1到4之间的数字:' echo '你输入数字为:' read aNum case $aNum in 1) echo '你选择了1' ;; 1) echo '你选择了2' ;; 1) echo '你选择了3' ;; 1) echo '你选择了4' ;; *) echo '你没有输入1到4之间的数字' ;; esac
vol="hhh" case $vol in "hhh") echo "you are hhhhhh" ;; "xxx") echo "you are xxxxxx" ;; "www") echo "you are wwwwww" ;; esac # you are hhhhhh
在循环过程中,有时候需要在未达到循环结束条件时强制跳出循环,Shell 使用两个命令来实现该功能:break 和 continue
break 命令
continue
break 命令实例:
echo "welcome to Amusement park" echo "please inter a number between 1-4" while : do read -p "please inter your number: " num case $num in 1|2|3|4) echo "you choose 1-4 you are great" ;; *) echo "you choose others you are bad" break ;; esac done
echo "welcome to Amusement park" echo "please inter a number between 1-4" while : do read -p "please inter your number: " num case $num in 1|2|3|4) echo "you choose 1-4 you are great" ;; *) echo "you choose others you are bad" continue echo "游戏结束" ;; esac done
运行代码发现,当输入大于4的数字时,该例中的循环不会结束,语句 echo “游戏结束” 永远不会被执行。