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.
awkを使用して次のことを行いたい:
4 つの列と行数を持つ入力データの例:
10 20 30 40 50 30 60 80 90 12 40 20
望ましい出力:
10 20 30 40 > 50 30 60 80 > 90 12 40 20
sed -r 's/(\S+\s+){2}/&\n/;$!a >' file
最後の行に注意してください。不要な末尾はありません>。
>