(一)shell编程之小工具

shell编程之小工具

# 本节目标

  • 了解shell中的通配符
  • 熟悉grep、cut、sort等小工具和shell中的通配符的使用

#一、文本处理工具

##1. grep工具

grep是****过滤工具;用于根据关键字进行行过滤

语法和选项

语法:

# grep [选项] '关键字' 文件名

常见选项:

OPTIONS:
    -i: 不区分大小写
    -v: 查找不包含指定内容的行,反向选择
    -w: 按单词搜索
    -o: 打印匹配关键字
    -c: 统计匹配到的行数
    -n: 显示行号
    -r: 逐层遍历目录查找
    -A: 显示匹配行及后面多少行	
    -B: 显示匹配行及前面多少行
    -C: 显示匹配行前后多少行
    -l:只列出匹配的文件名
    -L:列出不匹配的文件名
    -e: 使用正则匹配
    -E:使用扩展正则匹配
    ^key:以关键字开头
    key$:以关键字结尾
    ^$:匹配空行
    --color=auto :可以将找到的关键词部分加上颜色的显示

颜色显示(别名设置):

临时设置:
# alias grep='grep --color=auto'			//只针对当前终端和当前用户生效

永久设置:
1)全局(针对所有用户生效)
vim /etc/bashrc
alias grep='grep --color=auto'
source /etc/bashrc

2)局部(针对具体的某个用户)
vim ~/.bashrc
alias grep='grep --color=auto'
source ~/.bashrc

举例说明:

说明:不要直接使用/etc/passwd文件,将其拷贝到/tmp下做实验!

# grep -i root passwd						忽略大小写匹配包含root的行
# grep -w ftp passwd 						精确匹配ftp单词
# grep -w hello passwd 						精确匹配hello单词;自己添加包含hello的行到文件
# grep -wo ftp passwd 						打印匹配到的关键字ftp
# grep -n root passwd 						打印匹配到root关键字的行好
# grep -ni root passwd 						忽略大小写匹配统计包含关键字root的行
# grep -nic root passwd						忽略大小写匹配统计包含关键字root的行数
# grep -i ^root passwd 						忽略大小写匹配以root开头的行
# grep bash$ passwd 							匹配以bash结尾的行
# grep -n ^$ passwd 							匹配空行并打印行号
# grep ^# /etc/vsftpd/vsftpd.conf		匹配以#号开头的行
# grep -v ^# /etc/vsftpd/vsftpd.conf	匹配不以#号开头的行
# grep -A 5 mail passwd 				 	匹配包含mail关键字及其后5行
# grep -B 5 mail passwd 				 	匹配包含mail关键字及其前5行
# grep -C 5 mail passwd 					匹配包含mail关键字及其前后5行
huislee@huislee-Lenovo-G410:/home/test$ grep --color=auto 'root' passwd 
root:x:0:0:root:/root:/bin/bash
huislee@huislee-Lenovo-G410:/home/test$ alias grep='grep --color=auto'
huislee@huislee-Lenovo-G410:/home/test$ vim /etc/bashrc
huislee@huislee-Lenovo-G410:/home/test$ 
huislee@huislee-Lenovo-G410:/home/test$ grep 'root' passwd
root:x:0:0:root:/root:/bin/bash
huislee@huislee-Lenovo-G410:/home/test$ grep -n 'root' passwd
1:root:x:0:0:root:/root:/bin/bash
huislee@huislee-Lenovo-G410:/home/test$ vi passwd 
huislee@huislee-Lenovo-G410:/home/test$ grep -n '^root' passwd
1:root:x:0:0:root:/root:/bin/bash
41:huislee:x:1000:1000:huislee,,,:/home/huislee:/bin/bash
huislee@huislee-Lenovo-G410:/home/test$ grep -niv '^root' passwd
2:daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
3:bin:x:2:2:bin:/bin:/usr/sbin/nologin
4:sys:x:3:3:sys:/dev:/usr/sbin/nologin
5:sync:x:4:65534:sync:/bin:/bin/sync
6:games:x:5:60:games:/usr/games:/usr/sbin/nologin
7:man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
8:lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
9:mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
10:news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
11:uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
12:proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
13:www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
14:backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
15:list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
16:irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
17:gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin

huislee@huislee-Lenovo-G410:/home/test$ grep -nB 3 '^ftp' passwd 
40-gdm:x:121:125:Gnome Display Manager:/var/lib/gdm3:/bin/false
41-huislee:x:1000:1000:huislee,,,:/home/huislee:/bin/bash
42-sshd:x:122:65534::/run/sshd:/usr/sbin/nologin
43:ftp:x:123:128:ftp daemon,,,:/srv/ftp:/usr/sbin/nologin
huislee@huislee-Lenovo-G410:/home/test$ grep -nA 3 '^ftp' passwd 
43:ftp:x:123:128:ftp daemon,,,:/srv/ftp:/usr/sbin/nologin
44-statd:x:124:65534::/var/lib/nfs:/usr/sbin/nologin
45-stu1:x:1001:1001::/home/stu1:/bin/sh
46-stu2:x:1002:1002::/home/stu2:/bin/sh
huislee@huislee-Lenovo-G410:/home/test$ grep -nC 3 '^ftp' passwd 
40-gdm:x:121:125:Gnome Display Manager:/var/lib/gdm3:/bin/false
41-huislee:x:1000:1000:huislee,,,:/home/huislee:/bin/bash
42-sshd:x:122:65534::/run/sshd:/usr/sbin/nologin
43:ftp:x:123:128:ftp daemon,,,:/srv/ftp:/usr/sbin/nologin
44-statd:x:124:65534::/var/lib/nfs:/usr/sbin/nologin
45-stu1:x:1001:1001::/home/stu1:/bin/sh
46-stu2:x:1002:1002::/home/stu2:/bin/sh

##2. cut工具

cut是****截取工具,用于列的截取

语法和选项

语法:

# cut 选项  文件名

常见选项:

选项后可以直接使用也可以使用单引号或者双引号;如 -d: -d ":" -d ':'三者等价
-c:	以字符为单位进行分割,截取
-d:	自定义分隔符,默认为制表符\t
-f:	与-d一起使用,指定截取哪个区域

举例说明:

# cut -d: -f1 1.txt 			以:冒号分割,截取第1列内容
# cut -d: -f1,6,7 1.txt 	以:冒号分割,截取第1,6,7列内容
# cut -c4 1.txt 				截取文件中每行第4个字符
# cut -c1-4 1.txt 			截取文件中每行的1-4个字符
# cut -c4-10 1.txt 			截取文件中每行的4-10个字符
# cut -c5- 1.txt 				从第5个字符开始截取后面所有字符
//-f1,7 为第一和第七列
huislee@huislee-Lenovo-G410:/home/test$ cut -d: -f1,7 passwd | head
root:/bin/bash
daemon:/usr/sbin/nologin
bin:/usr/sbin/nologin
sys:/usr/sbin/nologin
sync:/bin/sync
games:/usr/sbin/nologin
man:/usr/sbin/nologin
lp:/usr/sbin/nologin
mail:/usr/sbin/nologin
news:/usr/sbin/nologin
huislee@huislee-Lenovo-G410:/home/test$ cut -d ":" -f1,7 passwd | head
root:/bin/bash
daemon:/usr/sbin/nologin
bin:/usr/sbin/nologin
sys:/usr/sbin/nologin
sync:/bin/sync
games:/usr/sbin/nologin
man:/usr/sbin/nologin
lp:/usr/sbin/nologin
mail:/usr/sbin/nologin
news:/usr/sbin/nologin
huislee@huislee-Lenovo-G410:/home/test$ cut -d ':' -f1,7 passwd | head
root:/bin/bash
daemon:/usr/sbin/nologin
bin:/usr/sbin/nologin
sys:/usr/sbin/nologin
sync:/bin/sync
games:/usr/sbin/nologin
man:/usr/sbin/nologin
lp:/usr/sbin/nologin
mail:/usr/sbin/nologin
news:/usr/sbin/nologin
//截取1-5个字符
huislee@huislee-Lenovo-G410:/home/test$ cut -c1-5 passwd 
root:
daemo
bin:x
sys:x
sync:
games
man:x
lp:x:

课堂练习:
用小工具列出你当系统的运行级别rhel8基础系统环境配置及安装软件。5/3

  1. 如何查看系统运行级别
    • 命令runlevel
    • 文件/etc/inittab
  2. 如何过滤运行级别
runlevel |cut -c3
runlevel | cut -d ' ' -f2
grep -v '^#' /etc/inittab | cut -d: -f2
grep '^id' /etc/inittab |cut -d: -f2
grep "initdefault:$" /etc/inittab | cut -c4
grep -v ^# /etc/inittab |cut -c4
grep 'id:' /etc/inittab |cut -d: -f2
cut -d':' -f2 /etc/inittab |grep -v ^#
cut -c4 /etc/inittab |tail -1
cut -d: -f2 /etc/inittab |tail -1
huislee@huislee-Lenovo-G410:/home/test$ runlevel 
N 5
huislee@huislee-Lenovo-G410:/home/test$ runlevel | cut -c3
5
huislee@huislee-Lenovo-G410:/home/test$ runlevel | cut -d ' ' -f2
5

3. sort工具

sort工具用于排序;它将文件的每一行作为一个单位,从首字符向后,依次按ASCII码值进行比较,最后将他们按升序输出。

语法和选项
-u :去除重复行
-r :降序排列,默认是升序
-o : 将排序结果输出到文件中,类似重定向符号>
-n :以数字排序,默认是按字符排序
-t :分隔符
-k :第N列
-b :忽略前导空格。
-R :随机排序,每次运行的结果均不同

举例说明

# sort -n -t: -k3 1.txt 			按照用户的uid进行升序排列
# sort -nr -t: -k3 1.txt 			按照用户的uid进行降序排列
# sort -n 2.txt 						按照数字排序
# sort -nu 2.txt 						按照数字排序并且去重
# sort -nr 2.txt 
# sort -nru 2.txt 
# sort -nru 2.txt 
# sort -n 2.txt -o 3.txt 			按照数字排序并将结果重定向到文件
# sort -R 2.txt 
# sort -u 2.txt 
root@huislee-Lenovo-G410:/home/huislee/test# head passwd > 1.txt
root@huislee-Lenovo-G410:/home/huislee/test# cat -n 1.txt 
     1	root:x:0:0:root:/root:/bin/bash
     2	daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
     3	bin:x:2:2:bin:/bin:/usr/sbin/nologin
     4	sys:x:3:3:sys:/dev:/usr/sbin/nologin
     5	sync:x:4:65534:sync:/bin:/bin/sync
     6	games:x:5:60:games:/usr/games:/usr/sbin/nologin
     7	man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
     8	lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
     9	mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
    10	news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
root@huislee-Lenovo-G410:/home/huislee/test# sort -n -t: -k3 1.txt 
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
root@huislee-Lenovo-G410:/home/huislee/test# sort -nr -t: -k3 1.txt 
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
games:x:5:60:games:/usr/games:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
sys:x:3:3:sys:/dev:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
root:x:0:0:root:/root:/bin/bash
root@huislee-Lenovo-G410:/home/huislee/test# 

##4.uniq工具

uniq用于去除**连续重复**行

常见选项:
-i: 忽略大小写
-c: 统计重复行次数
-d:只显示重复行

举例说明:
# uniq 2.txt 
# uniq -d 2.txt 
# uniq -dc 2.txt 
root@huislee-Lenovo-G410:/home/huislee/test# uniq 2.txt 
aaa
111
aaa
444
555
111
aaa
root@huislee-Lenovo-G410:/home/huislee/test# cat 2.txt 
aaa
111
aaa
444
555
555
111
aaa
aaa
root@huislee-Lenovo-G410:/home/huislee/test# sort -u 2.txt 
111
444
555
aaa
root@huislee-Lenovo-G410:/home/huislee/test# uniq -cd 2.txt 
      2 555
      2 aaa
root@huislee-Lenovo-G410:/home/huislee/test# 

5.tee工具

tee工具是从标准输入读取并写入到标准输出和文件,即:双向覆盖重定向(屏幕输出|文本输入)

选项:
-a 双向追加重定向

# echo hello world
# echo hello world|tee file1
# cat file1 
# echo 999|tee -a file1
# cat file1 
root@huislee-Lenovo-G410:/home/huislee/test# echo hello world|tee 3.txt
hello world
root@huislee-Lenovo-G410:/home/huislee/test# cat 3.txt 
hello world
root@huislee-Lenovo-G410:/home/huislee/test# echo 888|tee 3.txt
888
root@huislee-Lenovo-G410:/home/huislee/test# cat 3.txt 
888
root@huislee-Lenovo-G410:/home/huislee/test# echo 999|tee -a 3.txt
999
root@huislee-Lenovo-G410:/home/huislee/test# cat 3.txt 
888
999
//过滤掉#开头和空行后写到4.TXT
root@huislee-Lenovo-G410:/home/huislee/test# grep -v '^#' bash.bashrc | grep -v '^$' | tee 4.txt
[ -z "$PS1" ] && return
shopt -s checkwinsize
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi
if ! [ -n "${SUDO_USER}" -a -n "${SUDO_PS1}" ]; then
  PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; then
    case " $(groups) " in *\ admin\ *|*\ sudo\ *)
    if [ -x /usr/bin/sudo ]; then
	cat <<-EOF
	To run a command as administrator (user "root"), use "sudo <command>".
	See "man sudo_root" for details.
	
	EOF
    fi
    esac
fi

6.diff工具

diff工具用于逐行比较文件的不同

注意:diff描述两个文件不同的方式是告诉我们怎样改变第一个文件之后与第二个文件匹配

语法和选项

语法:

diff [选项] 文件1 文件2

常用选项:

选项含义备注
-b不检查空格
-B不检查空白行
-i不检查大小写
-w忽略所有的空格
–normal正常格式显示(默认)
-c上下文格式显示
-u合并格式显示

举例说明:

  • 比较两个普通文件异同,文件准备:
[root@MissHou ~]# cat file1
aaaa
111
hello world
222
333
bbb
[root@MissHou ~]#
[root@MissHou ~]# cat file2
aaa
hello
111
222
bbb
333
world

1)正常显示

diff目的:file1如何改变才能和file2匹配
[root@huislee ~]# diff file1 file2
1c1,2					第一个文件的第1行需要改变(c=change)才能和第二个文件的第1到2行匹配			
< aaaa				小于号"<"表示左边文件(file1)文件内容
---					---表示分隔符
> aaa					大于号">"表示右边文件(file2)文件内容
> hello
3d3					第一个文件的第3行删除(d=delete)后才能和第二个文件的第3行匹配
< hello world
5d4					第一个文件的第5行删除后才能和第二个文件的第4行匹配
< 333
6a6,7					第一个文件的第6行增加(a=add)内容后才能和第二个文件的第6到7行匹配
> 333					需要增加的内容在第二个文件里是333和world
> world

2)上下文格式显示

[root@huislee ~]# diff -c file1 file2
前两行主要列出需要比较的文件名和文件的时间戳;文件名前面的符号***表示file1,---表示file2
*** file1       2019-04-16 16:26:05.748650262 +0800
--- file2       2019-04-16 16:26:30.470646030 +0800
***************	我是分隔符
*** 1,6 *******开头表示file1文件,1,6表示1到6行
! aaaa				!表示该行需要修改才与第二个文件匹配
  111
- hello world		-表示需要删除该行才与第二个文件匹配
  222
- 333					-表示需要删除该行才与第二个文件匹配
  bbb
--- 1,7 -------开头表示file2文件,1,7表示1到7行
! aaa					表示第一个文件需要修改才与第二个文件匹配
! hello				表示第一个文件需要修改才与第二个文件匹配
  111
  222
  bbb
+ 333					表示第一个文件需要加上该行才与第二个文件匹配
+ world				表示第一个文件需要加上该行才与第二个文件匹配

3)合并格式显示

[root@huislee ~]# diff -u file1 file2
前两行主要列出需要比较的文件名和文件的时间戳;文件名前面的符号---表示file1,+++表示file2
--- file1       2019-04-16 16:26:05.748650262 +0800
+++ file2       2019-04-16 16:26:30.470646030 +0800
@@ -1,6 +1,7 @@
-aaaa
+aaa
+hello
 111
-hello world
 222
-333
 bbb
+333
+world
  • 比较两个目录不同
默认情况下也会比较两个目录里相同文件的内容
[root@huislee  tmp]# diff dir1 dir2
diff dir1/file1 dir2/file1
0a1
> hello
Only in dir1: file3
Only in dir2: test1
如果只需要比较两个目录里文件的不同,不需要进一步比较文件内容,需要加-q选项
[root@huislee  tmp]# diff -q dir1 dir2
Files dir1/file1 and dir2/file1 differ
Only in dir1: file3
Only in dir2: test1

其他小技巧:

有时候我们需要以一个文件为标准,去修改其他文件,并且修改的地方较多时,我们可以通过打补丁的方式完成。

1)先找出文件不同,然后输出到一个文件
[root@huislee ~]# diff -uN file1 file2 > file.patch
-u:上下文模式
-N:将不存在的文件当作空文件
2)将不同内容打补丁到文件
[root@huislee ~]# patch file1 file.patch
patching file file1
3)测试验证
[root@huislee ~]# diff file1 file2
[root@huislee ~]#

7. paste工具

paste工具用于合并文件行

常用选项:
-d:自定义间隔符,默认是tab
-s:串行处理,非并行
root@huislee-Lenovo-G410:/home/huislee/test# cat -n 2.txt 
     1	aaa
     2	111
     3	aaa
     4	444
     5	aaa
root@huislee-Lenovo-G410:/home/huislee/test# cat -n 3.txt 
     1	888
     2	999
root@huislee-Lenovo-G410:/home/huislee/test# paste 2.txt 3.txt 
aaa	888
111	999
aaa	
444	
aaa	
root@huislee-Lenovo-G410:/home/huislee/test# paste -d: 2.txt 3.txt 
aaa:888
111:999
aaa:
444:
aaa:
root@huislee-Lenovo-G410:/home/huislee/test# paste -d: -s 2.txt 3.txt 
aaa:111:aaa:444:aaa
888:999
root@huislee-Lenovo-G410:/home/huislee/test# 

##8. tr工具

tr用于字符转换,替换和删除;主要用于删除文件中控制字符或进行字符转换

语法和选项

语法:

用法1:命令的执行结果交给tr处理,其中string1用于查询,string2用于转换处理
# commands|tr  'string1'  'string2'
用法2:tr处理的内容来自文件,记住要使用"<"标准输入
# tr  'string1'  'string2' < filename

用法3:匹配string1进行相应操作,如删除操作
# tr options 'string1' < filename

常用选项:

-d 删除字符串1中所有输入字符。
-s 删除所有重复出现字符序列,只保留第一个;即将重复出现字符串压缩为一个字符串

常匹配字符串:

字符串含义备注
a-z或[:lower:]匹配所有小写字母[a-zA-Z0-9]
A-Z或[:upper:]匹配所有大写字母
0-9或[:digit:]匹配所有数字
[:alnum:]匹配所有字母和数字
[:alpha:]匹配所有字母
[:blank:]所有水平空白
[:punct:]匹配所有标点符号
[:space:]所有水平或垂直的空格
[:cntrl:]所有控制字符\f Ctrl-L 走行换页
\n Ctrl-J 换行

\r Ctrl-M 回车
\t Ctrl-I tab键 |

举例说明:

[root@huislee  shell01]# cat 3.txt 	自己创建该文件用于测试
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
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin
boss02:x:516:511::/home/boss02:/bin/bash
vip:x:517:517::/home/vip:/bin/bash
stu1:x:518:518::/home/stu1:/bin/bash
mailnull:x:47:47::/var/spool/mqueue:/sbin/nologin
smmsp:x:51:51::/var/spool/mqueue:/sbin/nologin
aaaaaaaaaaaaaaaaaaaa
bbbbbb111111122222222222233333333cccccccc
hello world 888
666
777
999

root@huislee-Lenovo-G410:/home/huislee/test# tr 'a-z' 'A-Z' <1.txt 
ROOT:X:0:0:ROOT:/ROOT:/BIN/BASH
DAEMON:X:1:1:DAEMON:/USR/SBIN:/USR/SBIN/NOLOGIN
BIN:X:2:2:BIN:/BIN:/USR/SBIN/NOLOGIN
SYS:X:3:3:SYS:/DEV:/USR/SBIN/NOLOGIN
SYNC:X:4:65534:SYNC:/BIN:/BIN/SYNC
GAMES:X:5:60:GAMES:/USR/GAMES:/USR/SBIN/NOLOGIN
MAN:X:6:12:MAN:/VAR/CACHE/MAN:/USR/SBIN/NOLOGIN
LP:X:7:7:LP:/VAR/SPOOL/LPD:/USR/SBIN/NOLOGIN
MAIL:X:8:8:MAIL:/VAR/MAIL:/USR/SBIN/NOLOGIN
NEWS:X:9:9:NEWS:/VAR/SPOOL/NEWS:/USR/SBIN/NOLOGIN
root@huislee-Lenovo-G410:/home/huislee/test# tr '0-9' '@' <1.txt 
root:x:@:@:root:/root:/bin/bash
daemon:x:@:@:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:@:@:bin:/bin:/usr/sbin/nologin
sys:x:@:@:sys:/dev:/usr/sbin/nologin
sync:x:@:@@@@@:sync:/bin:/bin/sync
games:x:@:@@:games:/usr/games:/usr/sbin/nologin
man:x:@:@@:man:/var/cache/man:/usr/sbin/nologin
lp:x:@:@:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:@:@:mail:/var/mail:/usr/sbin/nologin
news:x:@:@:news:/var/spool/news:/usr/sbin/nologin
root@huislee-Lenovo-G410:/home/huislee/test# 
//删除
root@huislee-Lenovo-G410:/home/huislee/test# tr -d 'a-z' <1.txt 
::0:0::/://
::1:1:://:///
::2:2::/:///
::3:3::/:///
::4:65534::/://
::5:60:://:///
::6:12::///:///
::7:7::///:///
::8:8:://:///
::9:9::///:///
root@huislee-Lenovo-G410:/home/huislee/test#


# tr -d '[:/]' < 3.txt 				删除文件中的:和/
# cat 3.txt |tr -d '[:/]'			删除文件中的:和/
# tr '[0-9]' '@' < 3.txt 			将文件中的数字替换为@符号
# tr '[a-z]' '[A-Z]' < 3.txt 		将文件中的小写字母替换成大写字母
# tr -s '[a-z]' < 3.txt 			匹配小写字母并将重复的压缩为一个
# tr -s '[a-z0-9]' < 3.txt 		匹配小写字母和数字并将重复的压缩为一个
# tr -d '[:digit:]' < 3.txt 		删除文件中的数字
# tr -d '[:blank:]' < 3.txt 		删除水平空白
# tr -d '[:space:]' < 3.txt 		删除所有水平和垂直空白

小试牛刀
  1. 使用小工具分别截取当前主机IP;截取NETMASK;截取广播地址;截取MAC地址
# ifconfig eth0|grep 'Bcast'|tr -d '[a-zA-Z ]'|cut -d: -f2,3,4
10.1.1.1:10.1.1.255:255.255.255.0
# ifconfig eth0|grep 'Bcast'|tr -d '[a-zA-Z ]'|cut -d: -f2,3,4|tr ':' '\n'
10.1.1.1
10.1.1.255
255.255.255.0
# ifconfig eth0|grep 'HWaddr'|cut -d: -f2-|cut -d' ' -f4
00:0C:29:25:AE:54
# ifconfig eth0|grep 'HW'|tr -s ' '|cut -d' ' -f5
00:0C:29:B4:9E:4E

# ifconfig eth1|grep Bcast|cut -d: -f2|cut -d' ' -f1
# ifconfig eth1|grep Bcast|cut -d: -f2|tr -d '[ a-zA-Z]'
# ifconfig eth1|grep Bcast|tr -d '[:a-zA-Z]'|tr ' ' '@'|tr -s '@'|tr '@' '\n'|grep -v ^$
# ifconfig eth0|grep 'Bcast'|tr -d [:alpha:]|tr '[ :]' '\n'|grep -v ^$
# ifconfig eth1|grep HWaddr|cut -d ' ' -f11
# ifconfig eth0|grep HWaddr|tr -s ' '|cut -d' ' -f5
# ifconfig eth1|grep HWaddr|tr -s ' '|cut -d' ' -f5
# ifconfig eth0|grep 'Bcast'|tr -d 'a-zA-Z:'|tr ' ' '\n'|grep -v '^$'
wlp8s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.0.106  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::d695:a324:4945:500f  prefixlen 64  scopeid 0x20<link>
        ether ac:b5:7d:4c:ca:f0  txqueuelen 1000  (以太网)
        RX packets 505899  bytes 649750089 (649.7 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 228681  bytes 31031890 (31.0 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'netmask'
        inet 192.168.0.106  netmask 255.255.255.0  broadcast 192.168.0.255
root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'netmask'|cut  -c13-26
 192.168.0.106
root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'netmask'|tr -d 'a-zA-Z:'|tr ' ' '\n' | grep -v '^$'
192.168.0.106
255.255.255.0
192.168.0.255

root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'ether'
        ether ac:b5:7d:4c:ca:f0  txqueuelen 1000  (以太网)
root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'ether'|tr -s ' '
 ether ac:b5:7d:4c:ca:f0 txqueuelen 1000 (以太网)
root@huislee-Lenovo-G410:/home/huislee/test# ifconfig wlp8s0|grep 'ether'|tr -s ' '|cut -d' ' -f3
ac:b5:7d:4c:ca:f0
root@huislee-Lenovo-G410:/home/huislee/test# 

  1. 将系统中所有普通用户的用户名、密码和默认shell保存到一个文件中,要求用户名密码和默认shell之间用tab键分割
# grep 'bash$' passwd |grep -v 'root'|cut -d: -f1,2,7|tr ':' '\t' |tee abc.txt
root@huislee-Lenovo-G410:/home/huislee/test# grep 'bash$' passwd 
root:x:0:0:root:/root:/bin/bash
huislee:x:1000:1000:huislee,,,:/home/huislee:/bin/bash
root@huislee-Lenovo-G410:/home/huislee/test# grep 'bash$' passwd |grep -v 'root'
huislee:x:1000:1000:huislee,,,:/home/huislee:/bin/bash
root@huislee-Lenovo-G410:/home/huislee/test# grep 'bash$' passwd |grep -v 'root'|cut -d: -f1,2,7 | tr ':' '\t' |tee abc.txt
huislee	x	/bin/bash
root@huislee-Lenovo-G410:/home/huislee/test# cat abc.txt 
huislee	x	/bin/bash
root@huislee-Lenovo-G410:/home/huislee/test# 

二、bash的特性

##1、命令和文件自动补全

Tab只能补全命令和文件 (RHEL6/Centos6)

##2、常见的快捷键

^c   			终止前台运行的程序
^z	  			将前台运行的程序挂起到后台
^d   			退出 等价exit
^l   			清屏 
^a |home  	光标移到命令行的最前端
^e |end  	光标移到命令行的后端
^u   			删除光标前所有字符
^k   			删除光标后所有字符
^r	 			搜索历史命令

##3 、常用的通配符(重点)

*:	匹配0或多个任意字符
?:	匹配任意单个字符
[list]:	匹配[list]中的任意单个字符,或者一组单个字符   [a-z]
[!list]: 匹配除list中的任意单个字符
{string1,string2,...}:匹配string1,string2或更多字符串


# rm -f file*
# cp *.conf  /dir1
# touch file{1..5}
root@huislee-Lenovo-G410:/home/huislee/test/dir# touch file{0..13}.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls
file0.jpg   file11.jpg  file13.jpg  file2.jpg  file4.jpg  file6.jpg  file8.jpg
file10.jpg  file12.jpg  file1.jpg   file3.jpg  file5.jpg  file7.jpg  file9.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[0-13].jpg
file0.jpg  file1.jpg  file3.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[2-14].jpg
file4.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[1-10].jpg
file0.jpg  file1.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[0-9,10,11].jpg
file0.jpg  file2.jpg  file4.jpg  file6.jpg  file8.jpg
file1.jpg  file3.jpg  file5.jpg  file7.jpg  file9.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[2-10].jpg
file0.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file[!5-9].jpg
file0.jpg  file1.jpg  file2.jpg  file3.jpg  file4.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# ls file{1,13,12}.jpg
file12.jpg  file13.jpg  file1.jpg
root@huislee-Lenovo-G410:/home/huislee/test/dir# 

##4、bash中的引号(重点)

  • 双引号"" :会把引号的内容当成整体来看待,允许通过$符号引用其他变量值
  • 单引号’’ :会把引号的内容当成整体来看待,禁止引用其他变量值,shell中特殊符号都被视为普通字符
  • 反撇号`` :反撇号和$()一样,引号或括号里的命令会优先执行,如果存在嵌套,反撇号不能用
root@huislee-Lenovo-G410:/home/huislee/test/dir# date  +%F
2020-11-01
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo "$(date +%F)"
2020-11-01
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo '$(date +%F)'
$(date +%F)
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo "`date +%F`"
2020-11-01
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo `date +%F`
2020-11-01
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo "`echo "`date +%F`"`"
bash: command substitution: 行 1: 寻找匹配的 `"' 是遇到了未预期的文件结束符
bash: command substitution: 行 2: 语法错误: 未预期的文件结尾
bash: command substitution: 行 1: 寻找匹配的 `"' 是遇到了未预期的文件结束符
bash: command substitution: 行 2: 语法错误: 未预期的文件结尾
date +%F
root@huislee-Lenovo-G410:/home/huislee/test/dir# echo "$(echo "`date +%F`")"
2020-11-01
root@huislee-Lenovo-G410:/home/huislee/test/dir# 

[root@huislee  dir1]# echo "$(hostname)"
server
[root@huislee  dir1]# echo '$(hostname)'
$(hostname)
[root@huislee  dir1]# echo "hello world"
hello world
[root@huislee  dir1]# echo 'hello world'
hello world

[root@huislee  dir1]# echo $(date +%F)
2018-11-22
[root@huislee  dir1]# echo `echo $(date +%F)`
2018-11-22
[root@huislee  dir1]# echo `date +%F`
2018-11-22
[root@huislee  dir1]# echo `echo `date +%F``
date +%F
[root@huisleeMissHou  dir1]# echo $(echo `date +%F`)
2018-11-22
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值