?? awk.sc2
字號:
# Second awk script-- awk.sc2BEGIN{ FS=":"; OFS="\t" print " NAME\t\tDISTRICT\tQUANTITY" print "___________________________________________\n" }{print $1"\t " $3"\t\t" $7}{total+=$7}/north/{count++}END{ print "---------------------------------------------" print "The total quantity is " total print "The number of northern salespersons is " count "."}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -