AWK 學習
awk
學習資料連結:
http://www.ibm.com/developerworks/linux/library/l-awk1/index.html
[@more@]2012.09.06 :
[root@cdp ~]# cat test3.sh
#!/bin/awk -f
BEGIN {
# Print the squares from 1 to 10 the first way
i=1;
while (i <= 10) {
printf "The square of " i " is : "i*i "tn";
i = i+1;
}
# do it again, using more concise code
for (i=1; i <= 10; i++) {
printf "The square of " i " is : "i*i "tn";
}
# now end
exit;
}
[root@cdp ~]#
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/66634/viewspace-1059339/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- awk 學習總結
- AWK 學習筆記筆記
- AWK學習一例
- awk指令碼學習小結指令碼
- [Shell] awk學習(1)-pattern{action}
- [Shell] awk學習(2)-pattern{action}
- [Shell] awk學習(4)-read input file
- 學習sed & awk時做的筆記筆記
- awk命令複習
- ass109.awk指令碼學習使用指令碼
- [Shell] awk學習(3)-regular expression 正規表示式Express
- 看示例學awk
- awk學習筆記(15)-數學函式及隨機數筆記函式隨機
- 透過編寫“猜數字”遊戲來學習 Awk遊戲
- [20200208]awk學習例子.txt
- 好程式設計師大資料學習路線分享AWK詳解程式設計師大資料
- awk
- [Shell] awk初學之常見問題
- Sed&awk筆記之awk篇:快速瞭解Awk(一)筆記
- Awk split
- awk命令
- gsub in awk
- awk 系列:如何讓 awk 使用 Shell 變數變數
- 《sed & awk》讀書筆記之 awk 篇筆記
- Linux awkLinux
- awk -- kill sessionSession
- awk變數變數
- awk常用案例
- 『忘了再學』Shell基礎 — 29、AWK內建變數變數
- linux awk sed grep awk 求和平均最大最小Linux
- [AWK]使用AWK進行分割字串以及擷取字串字串
- 學習學習再學習
- Linux-(awk)Linux
- awk 入門教程
- awk的總結
- linux之 awkLinux
- AWK 簡明教程
- awk命令詳解