从文件中读取反向行

时间:2016-08-31 08:55:17

标签: linux bash

如何从像

这样的文件中读取反向行
#cat file
hello world 
hello world bash

所以我需要这样的输出,

world hello 
bash world hello 

1 个答案:

答案 0 :(得分:1)

awk '{for(i=NF;i>=1;i--) if(i!=1)printf $i" ";else print $i}'
world hello
bash world hello