透過awk在指定的列後面加內容

czxin788發表於2019-04-17


[chenzx@sa ~]$ cat a.txt 
i am englinsh hh
you are oracle ll


[chenzx@sa ~]$ cat a.txt  |awk '$2=$2 "\twhere"'
i am	where englinsh hh
you are	where oracle ll

解釋:

    1、第一個$2表示把第二列的內容放在第二個$2的位置;

    2、在第二列後面加個where,並以tab鍵分割

          


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

相關文章