首页 > 代码库 > awk

awk

filename  当前输入文件的名称

NR 当前输入文件的总行数

NF 当前行记录中的字段数

OFS 输出字段的分隔符

FS 输入字段的分隔符

awk ‘{print "%s %-8s\n",$3,$1}‘ filename

cat /etc/passwd|awk ‘{FS=":"} $3<10 {print $1 "\t" $3}‘

[root@test~]# last|tail|awk ‘{print $1 "\t lines:" NR "\t colunmes:"NF}‘
root lines:1 colunmes:9
reboot lines:2 colunmes:11
root lines:3 colunmes:9
reboot lines:4 colunmes:11
root lines:5 colunmes:9
reboot lines:6 colunmes:11
root lines:7 colunmes:9
reboot lines:8 colunmes:11
lines:9 colunmes:0
wtmp lines:10 colunmes:7

awk