Awk by Example--转载
发布时间:2021-02-06 15:24:08 所属栏目:Linux 来源:网络整理
导读:原文地址: http://www.funtoo.org/Awk_by_Example,_Part_1?ref=dzone http://www.funtoo.org/Awk_by_Example,_Part_2 http://www.funtoo.org/Awk_by_Example,_Part_3 halt7 operator11 root0 shutdown6 sync5 bin1 ....etc. username: halt uid:7 username:
Big Tony
BEGIN { FS="n" RS="" }
BEGIN { FS="n" RS="" } { print $1 "," $2 "," $3 }
Jimmy the Weasel,100 Pleasant Drive,San Francisco,CA 12345 Big Tony,200 Incognito Ave.,Suburbia,WA 67890
print "Hello","there","Jim!"
Hello there Jim!
BEGIN { FS="n" RS="" OFS="," } { print $1,$2,$3 }
Cousin Vinnie Vinnie's Auto Shop 300 City Alley Sosueme,OR 76543
BEGIN { FS="n" RS="" ORS="" } |