[Shell] awk學習(2)-pattern{action}

tolilong發表於2016-04-11
其中如果pattern為true,則執行action
其中關係運算子包括>,<,==,!=,~,!~                             #~表示match,!~表示不match

例子:
[/tmp/test]# more tt11
A125 Jenny 100 210
A341 Dan 110 215
P158 Max 130 209
P148 John 125 220
A123 Linda 95 210

對A開頭的薪資*1.05,小於100的按100算
[/tmp/test]# awk '$1~/^A/{$3*=1.05} $3<100{$3=100}{printf "%-10s%-10s%-8s%-8s\n",$1,$2,$3,$4}' tt11
A125      Jenny     105     210     
A341      Dan       115.5   215     
P158      Max       130     209     
P148      John      125     220     
A123      Linda     100     210 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24237320/viewspace-2079042/,如需轉載,請註明出處,否則將追究法律責任。

相關文章