Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件
ColA ColB ColC 2.34 2.83 8.45 4.34 2.26 7.46 3.34 2.25 4.45
我怎样才能转置这个文件?
问候
你可以这样做awk:
awk
awk '{print $1, $3, $2}' file