3.14 9.6-9.7听课笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.14 9.6-9.7听课笔记相关的知识,希望对你有一定的参考价值。
awk工具
-F 指定分隔符
[[email protected] awk]# awk -F ':' '{print $1}' test.txt 指定分隔符,打印第一块
root
bin
daemon
adm
lp
sync
shutdown
halt
…
与sed类似,这种操作不更改文本本身的内容
[[email protected] awk]# awk -F ':' '{print $0}' test.txt 打印所有的段
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
如果不指定分隔符,默认以空格或空白字符为分隔符
[[email protected] awk]# cat tt
aa bb
dd ee
ff gg
[[email protected] awk]# awk '{print $1}' tt 不指定分隔符时不使用-F
aa
dd
ff
[[email protected] awk]# awk -F ':' '{print $1,$2,$3}' test.txt 打印多个块
root x 0
bin x 1
daemon x 2
adm x 3
lp x 4
[[email protected] awk]# awk -F ':' '{print $1"##"$2"##"$3}' test.txt 用任意字符分割每一个块,用于分割的字符需要加””
root##x##0
bin##x##1
daemon##x##2
adm##x##3
lp##x##4
awk的匹配功能
[[email protected] awk]# awk '/oo/' test.txt 匹配出有oo的行
root:x:0:0:root:/root:/bin/bash
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
[[email protected] awk]# awk -F ':' '$1 ~ /oo/' tt 匹配第一段有字母oo的行
root:abc
[[email protected] awk]# cat tt
root:abc
abc:root
[[email protected] awk]# awk -F ':' '$1 ~ /oo/' tt
root:abc
boot:cde
[[email protected] awk]# awk -F ':' '$1 ~ /oo+/' tt
booooot:cde
*awk中?、+等有特殊含义的符号均不需要加脱义字符
[[email protected] awk]# awk -F ':' '/root/ {print $1,$3} /user/ {print $3,$4}' test.txt
root 0
operator 11
[[email protected] awk]# awk -F ':' '/root/ {print $1,$3} /games/ {print $3,$4}' test.txt 支持多个表达式一起写
root 0
operator 11
12 100
[[email protected] awk]# grep -E 'root|games' test.txt
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
*以’:’为分隔符分别查找有root和games的行,并打印出root的第一块和第三块,打印出games的第三块和第四块
[[email protected] awk]# awk -F ':' '/root|user/ {print $0}' test.txt 或者
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[[email protected] awk]# awk -F ':' '$3==0 {print $1}' test.txt 第三段等于0的匹配打印第一段
root
[[email protected] awk]# awk -F ':' '$3==0 {print $0}' test.txt 全部打印
root:x:0:0:root:/root:/bin/bash
打印第三段大于等于500的
[[email protected] awk]# awk -F ':' '$3>=500 {print $0}' test.txt
polkitd:x:999:997:User for polkitd:/:/sbin/nologin
chrony:x:998:996::/var/lib/chrony:/sbin/nologin
hyc:x:1000:1000::/home/hyc:/bin/bash
[email protected] awk]# awk -F ':' '$3>=500 {print $0}' test.txt
polkitd:x:999:997:User for polkitd:/:/sbin/nologin
chrony:x:998:996::/var/lib/chrony:/sbin/nologin
hyc:x:1000:1000::/home/hyc:/bin/bash
[[email protected] awk]# awk -F ':' '$3>="500" {print $0}' test.txt
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
nobody:x:99:99:Nobody:/:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
polkitd:x:999:997:User for polkitd:/:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
chrony:x:998:996::/var/lib/chrony:/sbin/nologin
是否加””导致结果不同,加“”后里面的数字会以ASCII码的排序方式计算,里面的数字会按ASCII码表被识别成某个字符,否则就识别为纯数字
[[email protected] awk]# awk -F ':' '$7!="/sbin/nologin" {print $0}' test.txt 第7段不等于该内容的行
root:x:0:0:root:/root:/bin/bash
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
hyc:x:1000:1000::/home/hyc:/bin/bash
*此处若显示字符串(非数字)则要加双引号
[[email protected] awk]# awk -F ':' '$3<$4' test.txt 同行的不同段间比较
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
[[email protected] awk]# awk -F ':' '$3==$4' test.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
nobody:x:99:99:Nobody:/:/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
[[email protected] awk]# awk -F ':' '$3>"5" && $3<"7"' test.txt
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
shutdown:x:59:59:dsd:/dev/n:/sbin/nologin
问题:
[[email protected] awk]# awk -F ':' '$3>5 && $3<"7"' test.txt
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
shutdown:x:59:59:dsd:/dev/n:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin
hyc:x:1000:1000::/home/hyc:/bin/bash
[[email protected] awk]# awk -F ':' '$3>"5" && $3<7' test.txt
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
[[email protected] awk]#
以上是关于3.14 9.6-9.7听课笔记的主要内容,如果未能解决你的问题,请参考以下文章