接第二部分,此为第三部分:第32-55个shell例子。 Eg32、while/until/for经典例子 #!/bin/bash ## filename: while-infinite_loops.sh while true; do sleep 5 echo "infinite loops [ hit CTRL+C to stop]" done Eg33、while/until/for经典例子 #!/bin/bash ## filename: until-infinite_loops.…
接第二部分,此为第三部分:第32-55个shell例子。 Eg32、while/until/for经典例子 #!/bin/bash ## filename: while-infinite_loops.sh while true; do sleep 5 echo "infinite loops [ hit CTRL+C to stop]" done Eg33、while/until/for经典例子 #!/bin/bash ## filename: until-infinite_loops.…
21-31的shell实例脚本,这里粘贴的都是经过本人的实际实验环境调试实现的,仅供参考。 Eg21、关于for-loop_and_break的运用。 #!/bin/bash ## filename: for-loop_and_break.sh i=1 for day in Mon Tue Wed Thu Fri do echo "Weekday $((i++)) : $day" if [ $i -eq 3 ]; then break fi done Eg22、关于for-loop_an…
转:https://blog.csdn.net/xh_w20?type=blog 转:https://www.jb51.net/article/213879.htm 一、环境与概念: 1、环境 操作系统:Centos 7.l9 编辑器:vi shell环境:/bin/bash 2、shell执行方式: ./1.sh bash 1.sh 3、调用bash和sh区别: (1)bash bash:Bourne Again SHell (bash) 是 Bourne shell (sh) 的一个替代品。它最初是为替代原始的…
1、shell中的字符串连接方式 test=test111 test=$test""33 echo test 2、shell中的数值,变量赋值方式 count=1 count=$[$count + 1] echo $count 1、PS1/PS2/PS3/PS4环境变量的作用 在Linux系统中,PS1、PS2、PS3和PS4是特定的环境变量,它们各自在控制提示符和菜单提示信息方面发挥着不同的作用,这些PS变量在Linux系统中为用户提供了灵活的方式来定制和控制命令行的外观和行为,从而提高了用户与系统的交互体验。 …