51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

shell

shell case语句

shell case语句

厉飞雨 阅读(73) 评论(0) 赞(7)

<p>shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。</p> <p>先来说说 case in 吧 。</p> <pre><code>case流程判断 语法结构: case 变量 in 匹配序列1) 执行...

shell while true break 循环语句 详解

shell while true break 循环语句 详解

厉飞雨 阅读(74) 评论(0) 赞(6)

<p>shell while true break 循环语句 是非常重要的, 这篇文章,就带大家认识一下:shell while true循环</p> <h3>1)shell while true循环</h3> <pre><code>[root@baimeidashu ~]#cat while.sh #!...

shell 编程中- 文件判断- 字符串比较 -正则比较

shell 编程中- 文件判断- 字符串比较 -正则比较

厉飞雨 阅读(30) 评论(0) 赞(2)

shell 编程中 文件判断 ### 1文件判断 语法结构: test 判断符 文件或者目录 \[ 判断符 文件或者目录 \] 判断符: -f 文件存在则为真 -d 目录存在则为真 -e 文件存在则为真(任意类型的文件) -r 文件可读为真 -w 文件可写为真 -x 文件可执行为真 test -f /etc/passwd &...

shell if else语句 详解

shell if else语句 详解

厉飞雨 阅读(54) 评论(0) 赞(6)

这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...

shell 变量的3中传参方式

shell 变量的3中传参方式

厉飞雨 阅读(26) 评论(0) 赞(1)

shell 变量的3中传参方式 ### (1)直接传参 sh test.sh a b ### (2) 赋值传参 #!/bin/bash name=$1 age=$2 ### (3)read 读入 #!/bin/bash read -p "请您输入您的姓名: " name read -...

shell sleep 命令(shell睡眠10毫秒)

shell sleep 命令(shell睡眠10毫秒)

厉飞雨 阅读(56) 评论(0) 赞(5)

<p>如果是毫秒怎么办?</p> <p>shell 里边 有2个命令,可以延迟, 针对毫秒的要注意</p> <h3>(1)sleep 针对 秒级别</h3> <pre><code>sleep 1 # 表示延迟1秒 sleep 1s # 表示延迟1秒 sleep 1m #...