Linux5.4 shell特殊符号及管道相关命令
Posted Learning Notes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux5.4 shell特殊符号及管道相关命令相关的知识,希望对你有一定的参考价值。
特殊符合
1. * 任意个任意字符 2. ? 任意一个字符 3. # 注释字符 4. \ 脱义字符 5. | 管道符 6. $ 变量前缀,正则表示行位 7. ; 多行命令一行输入,分割用 8. ~用户家目录,正则表示匹配符 9. &放到命令后,会把命令丢到后台 10. > >> 2> 2>> &> 11. []指定字符中的一个,[0-9][a-zA-Z][abc] 12. || && || 在shell中是或者的意思,第一条不成功就执行第二条,成功就不在执行第二条 && 第一条成功才执行第二条
cut截取分割
# -d分隔符 # -f指定段号 # -c指定第几个字符,使用-c就不要使用-d -f [[email protected] tmp]# head -2 passwd.txt |cut -d ‘:‘ -f 2,4,7 x:0:/bin/bash x:1:/sbin/nologin [[email protected] tmp]# head -2 passwd.txt |cut -c 2,4,7 ot: i:1
sort排序
#sort常与uniq【去重复】一起用 #-n 以数字排序,字母或者特殊符号认为0 #-r 反序 #-t 分隔符,针对第几段排序,与-k连用 -kn1,n2【很少用】 [[email protected] tmp]# head -4 passwd.txt |sort -n adm:x:3:4:adm:/var/adm:/sbin/nologin bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin root:x:0:0:root:/root:/bin/bash [[email protected] tmp]# head -4 passwd.txt |sort -r root:x:0:0:root:/root:/bin/bash daemon:x:2:2:daemon:/sbin:/sbin/nologin bin:x:1:1:bin:/bin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin [[email protected] tmp]# head -4 passwd.txt |sort -t ‘:‘ -k3 root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin
wc 统计行数
#-l 统计行数 #-m 统计字符数,会算上隐藏字符 #-w 统计词数,以空白字符分割词 [[email protected] tmp]# head -4 passwd.txt |wc -m 142 [[email protected] tmp]# head -4 passwd.txt |wc -l 4 [[email protected] tmp]# head -4 passwd.txt |wc -w 4 [[email protected] tmp]# cat !$ cat 234234.txt 123 asdf werr,asdf [[email protected] tmp]# wc -w !$ wc -w 234234.txt 3 234234.txt #cat -A查看隐藏字符,其中的换行符 [[email protected] tmp]# cat -A passwd.txt| head -4 root:x:0:0:root:/root:/bin/bash$ bin:x:1:1:bin:/bin:/sbin/nologin$ daemon:x:2:2:daemon:/sbin:/sbin/nologin$ adm:x:3:4:adm:/var/adm:/sbin/nologin$
uniq去重
# 仅仅对挨着的两行相同的去重,所以需要先排序。 # -c 统计行数 [[email protected] tmp]# cat !$ cat 234234.txt 123 123 345 456 asdfb 345 02 asdf werr,asdf [[email protected] tmp]# sort !$|uniq -c sort 234234.txt|uniq -c 1 02 2 123 2 345 1 456 1 asdfb 1 asdf werr,asdf
tee命令
# 与输出重定向>类似,重定向到后面所跟文件中,同时屏幕显示。 # -a 追加 [[email protected] tmp]# sort 234234.txt|uniq -c| tee ty.txt 1 02 2 123 2 345 1 456 1 asdfb 1 asdf werr,asdf [[email protected] tmp]# cat ty.txt 1 02 2 123 2 345 1 456 1 asdfb 1 asdf werr,asdf
tr替换字符
[[email protected] tmp]# echo "chyuanliulinux" |tr ‘l‘ ‘L‘ chyuanLiuLinux [[email protected] tmp]# echo "chyuanliulinux" |tr ‘li‘ ‘L‘ chyuanLLuLLnux [[email protected] tmp]# echo "chyuanliulinux" |tr ‘li‘ ‘LI‘ chyuanLIuLInux [[email protected] tmp]# echo "chyuanliulinux" |tr ‘a-z‘ ‘A-Z‘ CHYUANLIULINUX
split切割
# -b 大小【默认单位字节】 # -l 行数 # 如果不指定目标文件名,则会以xaa xab ...这样的文件名存取切割后的文件。可以指定目标文件名 [[email protected] ty]# du -sh ty.txt 244K ty.txt [[email protected] ty]# split -b 50k ty.txt [[email protected] ty]# ls ty.txt xaa xab xac xad xae [[email protected] ty]# du -sh x* 52K xaa 52K xab 52K xac 52K xad 44K xae [[email protected] ty]# split -b 50k ty.txt chy [[email protected] ty]# ls chyaa chyab chyac chyad chyae ty.txt
以上是关于Linux5.4 shell特殊符号及管道相关命令的主要内容,如果未能解决你的问题,请参考以下文章
五周第五次课 8.10 shell特殊符号cut命令 8.11 sort_wc_uniq命令 8.1