shell if else语句 详解
这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...
这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...
变量的子串 ----- ### 1.变量的切片 (了解) 取出name中的 me [root@baimeidashu ~]#name='baimei' [root@baimeidashu ~]#echo ${name:2:3} ime ![](http://static.51tbox.com/static/2024-08-2...
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 -...
如果是毫秒怎么办? shell 里边 有2个命令,可以延迟, 针对毫秒的要注意 ### (1)sleep 针对 秒级别 sleep 1 # 表示延迟1秒 sleep 1s # 表示延迟1秒 sleep 1m # 表示延迟1分 sleep 1h # 表示延迟1小时 sleep 1d # 表示延迟一天 ...
shell 中重要的 位置变量 $0,$#, $? $$ $_ $\* $@ ### (1) $0 表示脚本的名称 ![](http://static.51tbox.com/static/2024-08-29/col/8e5ecc6fd11a186e85a66624d7fa72e9/7c9967e1c98944179b17a3b2ea6f0df3.png.jpg) ![]...
shell变量值的定义 ### (1) 数字的定义 连续的数字 age=234 不连续的用 单引号或者 双引号 age='23 4' ### (2)字符串的定义 dir=/etc/sysconfig/network-scripts/ifcfg-eth0 dir=''/etc/sysconfig/ne...
跟shell 变量相关的配置文件 3种 ### (1) /etc/profile 这个是全局的环境变量 配置文件, 最先执行的是这个文件。 ### (2) 用户家目录中 .bashrc 和 .bash_profile ![](http://static.51tbox.com/static/2024-08-29/col/5dc6462a5ec4766baffd6f575...
### shell变量名称定义 由 字母,数字,下划线组成 (1) 可以以字母或者下划线开头,但是不可以以数字开头 (2) 变量等号两边不能有空格 NAME=BaiMei ### 定义变量: 变量名称= 变量值 export 变量名称= 变量值 ![](http://static.51tbox.com/static/2024-08-29/col/4f3e...
sh -x ( 显示脚本执行的过程) sh -x test.sh ![](http://static.51tbox.com/static/2024-08-29/col/7914d616faff7050ad6480c3b12ebd5e/64b68f6edd2b463f971301fea37dec34.png.jpg) 欢迎来撩 :[shell 编程从0到1](ht...