上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 407 下一页
摘要: 1、测试1 [root@centos7 test2]# for ((i=1; i<=5; i++)); do echo "100"; done 100 100 100 100 100 阅读全文
posted @ 2021-04-22 18:45 小鲨鱼2018 阅读(75) 评论(0) 推荐(0)
摘要: 1、测试1 [root@centos7 test2]# cat test.sh #!/bin/bash read -p "please input an character: " i case $i in [a-z]|[A-Z]) echo "letter!" ;; [0-9]) echo "num 阅读全文
posted @ 2021-04-22 17:07 小鲨鱼2018 阅读(751) 评论(0) 推荐(0)
摘要: 1、隐藏光标 echo -e "\033[?25l" 2、显示光标 echo -e "\033[?25h" 来源:https://blog.csdn.net/weixin_43336281/article/details/99109789 阅读全文
posted @ 2021-04-22 16:19 小鲨鱼2018 阅读(402) 评论(0) 推荐(0)
摘要: 1、测试1 求1-100的和 [root@centos7 test2]# cat test.sh #!/bin/bash sum=0 a=1 while [ $a -le 100 ] do let sum+=$a let a++ done echo "the sum of 1-100 is: $su 阅读全文
posted @ 2021-04-22 15:51 小鲨鱼2018 阅读(1330) 评论(0) 推荐(0)
摘要: 1、for语句 [root@centos7 test2]# cat test.sh #!/bin/bash sum=0 for i in `seq $1` do let sum+=$i done echo "the sum of 1-$1 is: $sum" [root@centos7 test2] 阅读全文
posted @ 2021-04-22 13:05 小鲨鱼2018 阅读(4005) 评论(0) 推荐(0)
摘要: 1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if 阅读全文
posted @ 2021-04-22 12:35 小鲨鱼2018 阅读(297) 评论(2) 推荐(0)
摘要: linux shell脚本中流程控制语句 if、for、while、case 1、if语句 [root@centos7 test2]# ls test.sh [root@centos7 test2]# pwd /home/test2 [root@centos7 test2]# cat test.sh 阅读全文
posted @ 2021-04-21 23:16 小鲨鱼2018 阅读(393) 评论(0) 推荐(0)
摘要: linux系统中条件测试语句分为4类: 1、文件测试语句 2、逻辑测试语句 3、整数值比较语句 4、字符串比较语句 一、文件测试语句 -e :是否存在 -f :是否为文件 -d:是否为目录文件 -r:是否具有读的权限 -w: 是否具有写的权限 -x:是否具有执行的权限 [root@PC3 test] 阅读全文
posted @ 2021-04-21 18:35 小鲨鱼2018 阅读(237) 评论(0) 推荐(0)
摘要: 1、基本shell脚本 #!/bin/bash command 2、参数的变量 $0:脚本名称 $#:参数的数目 $*:参数 $1:第一个参数 $2:第二个参数 $3:第三个参数 $?:上一条命令执行成功输出0,否则其他数字。 [root@PC3 test]# cat a.sh #!/bin/bas 阅读全文
posted @ 2021-04-21 18:10 小鲨鱼2018 阅读(798) 评论(0) 推荐(0)
摘要: 1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# echo $a 123456 2、-p 参数 加入提示 [root@centos7 test]# unse 阅读全文
posted @ 2021-04-21 13:58 小鲨鱼2018 阅读(209) 评论(0) 推荐(0)
上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 407 下一页