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.
私は1つのファイルを持っています
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