几个简单内置shell命令
echo -n 不换行输出 -e 解析字符串中的特殊符号 (\n, \r, \t, \b), printf是直接识别特殊符号的
eval 执行多个命令 没什么太大作用
exec 不创建子进程执行后面的命令, 并且exit
export 设置环境变量
time 可以计算命令执行时间
shell字串的语法
${变量} 返回变量的值
${#变量} 返回变量的长度
${变量 : start} 返回下标start及以后的字符
${变量:start:lenght} 返回下标start后面的length个字符
${变量#word} ,删除变量开头最短匹配的字符word
${变量##word}, 删除变量开头最长匹配的字符word
${变量%word} ,删除变量结尾最短匹配的字符word
${变量%%word}, 删除变量结尾最长匹配的字符word
${变量/p/s} 用是s字符串替换最先匹配的字符串p
${变量//p/s} 用s字符串替代所以的p字符串
计算变量长度的各种玩法
echo $name | wc -l 统计的是行数
echo
n
a
m
e
∣
w
c
−
L
统计的是最长的一行的长度
e
x
p
r
l
e
n
g
t
h
"
name | wc -L 统计的是最长的一行的长度 expr length "
name∣wc−L统计的是最长的一行的长度exprlength"{name}"
echo “${name}” | awk ‘{print length($0)}’
echo KaTeX parse error: Expected '}', got 'EOF' at end of input: {name} //最快
批量修改文件名
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_1_finished.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_1_finished.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_2_finished.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_2_finished.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_3_finished.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_3_finished.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_4_finished.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_4_finished.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_5_finished.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_5_finished.png
# 解析 : ``是将结果输出, mv是改名, ${file/_finished/}, 将finished改为空格
[chen@iZ0jl780lb0oio7v4b0chbZ sub_str]$ for file in `ls *.jpg *.png`; do mv $file `echo ${file/_finished/}`; done;
[chen@iZ0jl780lb0oio7v4b0chbZ sub_str]$ ll
total 0
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_1.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_1.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_2.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_2.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_3.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_3.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_4.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_4.png
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_5.jpg
-rw-rw-r-- 1 chen chen 0 May 19 14:50 chenlang_5.png
特殊shell扩展变量
result=${str:-word}, 如果str为空,返回word字符串给result, 如果str不为空, 返回str
result=${str:=word} , 如果str为空,用word赋值给str,并且返回给result, 如果str不为空,直接返回str
${str:?word} 如果str为空,则word当作strerr输出, 否则输出str
${str:+word} ,如果str为空, 什么都不做, 否则word返回。
实际应用
数据备份, 删除过期的数据脚本
find --搜索 xargs --删除
find 需要搜索的目录 -name 搜索的文件名字 -type 文件类型 -mtime + 7 | xargs rm -f
#超过7天的
dir_path=/data/my_sql/dir
#下面其实不安全的,例如dir_path为空,上面的一行代码被注释掉了等
find ${dir_path} -name `*.tar.gz` -type f -mtime + 7 | xargs rm -f
find ${dir_path:=/data/my_sql/dir} -name `*.tar.gz` -type f -mtime + 7 | xargs rm -f
父子shell
source 和点,执行脚本,在当前shell进程执行生效
bash 和sh 和./script 会创建子shell进程去执行
pstree命令,看到如下情况,就是父shell进程环境
├─sshd───sshd───sshd───bash───pstree
ps -ef
-f 显示UID PID PPID
-e 列出所有进程的信息
– forest 可以显示父子进程的一个结构
ps -ef --forest
例如 : 输入操作 ps -ef --forest
创建进程列表(创建子shell)
(cd ~; pwd; ls; cd /tmp/; pwd; ls)
加上小括号,就是开启子shell去执行命令
创建子shell的意义? – 提高并发执行的能力
如果父shell 在ping www.baidu.com ,这个操作会一直运行, 会阻塞其他操作!!
那么子shell的意义就在于这里。文章来源:https://www.toymoban.com/news/detail-457517.html
echo $BASH_SHELL
结果为0 , 当前shell环境
结果为其他,就是开辟了子shell去执行文章来源地址https://www.toymoban.com/news/detail-457517.html
到了这里,关于Shell脚本编程入门--Day2的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!