加入收藏 | 设为首页 | 会员中心 | 我要投稿 鹤壁站长网 (https://www.0392zz.cn/)- 分布式云、存储数据、视频终端、媒体处理、内容创作!
当前位置: 首页 > 服务器 > 搭建环境 > Linux > 正文

Awk by Example--转载

发布时间:2021-02-06 16:02:24 所属栏目: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="" 
}                        

(编辑:鹤壁站长网)

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

推荐文章
    热点阅读