加入收藏 | 设为首页 | 会员中心 | 我要投稿 瑞安网 (https://www.ruian888.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 服务器 > 搭建环境 > Linux > 正文

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
200 Incognito Ave.
Suburbia,WA 67890

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="" 
}                        

(编辑:瑞安网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读