我有一个有很多线条的文件,像这样:
one 3456 orange
two 6690 grape
three 5570 apple
four 6683 pear
five 8847 cherry
six 9035 banana
于是我写了个Awk脚本 来捕捉这个输出:
apple banana cherry
看起来是这样的:
awk /three/ { a = $3}; /six/ { b = $3}; /five/ { c = $3} END {print a" " b" "c} <file
但这不是我一直使用 $3
- 我如何抓住这个变量来重新使用它?