我有一个file.txt
包含如下数据:
col11 col12 col13
col21 col22 col23
我使用以下命令获取所有可用行的第二列(行数可能会有所不同)awk '{print $2}' file.txt
现在我需要附加这个结果,如下所示:
"Process 1" - col12
"Process 2" - col22
等等获取的行数file.txt
。
我该怎么办?
答案1
您可以使用FNR
获取当前行号:
awk '{print "\"Process " FNR "\" - " $2}' <in >out