当前位置: 技术问答>linux和unix
求助shell脚本中awk的使用
来源: 互联网 发布时间:2017-04-23
本文导语: 现在我需要一个脚本, 用awk在判断一行内没有字符串 'hello' 时(字符串包括两个单引号) 则在此行未尾追加上'hello' 求问该怎么写脚本... | [root@wa-hq tmp]# cat a.txt | awk ' {if($0 ~ /'hello'/){printf $0"47hello...
现在我需要一个脚本,
用awk在判断一行内没有字符串 'hello' 时(字符串包括两个单引号)
则在此行未尾追加上'hello'
求问该怎么写脚本...
用awk在判断一行内没有字符串 'hello' 时(字符串包括两个单引号)
则在此行未尾追加上'hello'
求问该怎么写脚本...
|
[root@wa-hq tmp]# cat a.txt | awk ' {if($0 ~ /'hello'/){printf $0"47hello47n"}else{print $0}}'
C1
ooo
'hello''hello'
'hello'aaa'hello'
ooo
[root@wa-hq tmp]#