Shammer's Philosophy

My private adversaria

2014-08-14から1日間の記事一覧

AWK NR Sample Script

AWK

I wrote about AWK NR in this article, so today I translate this one liner awk command to script. It is below. #!/usr/bin/awk -f { for(i=6;i<=NF;i++){ printf "%s ", $i; } printf "\n"; } Here is a log that executed above script. $ echo "aaa …