shell case语句
<p>shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。</p> <p>先来说说 case in 吧 。</p> <pre><code>case流程判断 语法结构: case 变量 in 匹配序列1) 执行...
<p>shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。</p> <p>先来说说 case in 吧 。</p> <pre><code>case流程判断 语法结构: case 变量 in 匹配序列1) 执行...
<p>shell while true break 循环语句 是非常重要的, 这篇文章,就带大家认识一下:shell while true循环</p> <h3>1)shell while true循环</h3> <pre><code>[root@baimeidashu ~]#cat while.sh #!...
shell 编程中 文件判断 ### 1文件判断 语法结构: test 判断符 文件或者目录 \[ 判断符 文件或者目录 \] 判断符: -f 文件存在则为真 -d 目录存在则为真 -e 文件存在则为真(任意类型的文件) -r 文件可读为真 -w 文件可写为真 -x 文件可执行为真 test -f /etc/passwd &...
案例: -d 如果目录不存在则创建 [ -d /etc ] && mkdir /opt/`hostname`_`date +%F` && tar zcvf /opt/`hostname`_`date +%F`/etc.tar.gz /etc #!/bin/bash [ -f /server/scripts/day...
这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...
<h2>变量的子串</h2> <h3>1.变量的切片 (了解)</h3> <p>取出name中的 me</p> <pre><code>[root@baimeidashu ~]#name='baimei' [root@baimeidashu ~]#echo ${name...
shell编程中 整数比较 (1) test A -gt B test 10 -gt 4 && echo 正确 || echo 不正确 (2) \[ A -gt b\] (注意空格) [ 10 -gt 5 ]&& echo 正确 || echo 错误 ![](http://static.51tbox.com/static...
shell 变量的3中传参方式 ### (1)直接传参 sh test.sh a b ### (2) 赋值传参 #!/bin/bash name=$1 age=$2 ### (3)read 读入 #!/bin/bash read -p "请您输入您的姓名: " name read -...
<p>如果是毫秒怎么办?</p> <p>shell 里边 有2个命令,可以延迟, 针对毫秒的要注意</p> <h3>(1)sleep 针对 秒级别</h3> <pre><code>sleep 1 # 表示延迟1秒 sleep 1s # 表示延迟1秒 sleep 1m #...
shell 中重要的 位置变量 $0,$#, $? $$ $_ $\* $@ ### (1) $0 表示脚本的名称 ![](http://static.51tbox.com/static/2024-08-29/col/8e5ecc6fd11a186e85a66624d7fa72e9/7c9967e1c98944179b17a3b2ea6f0df3.png.jpg) ![]...