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で多くの入力ファイルを読み取る方法を理解しようとしています「ファイル1から1列目、ファイル2から2列目を印刷するにはどうすればよいですか?
入力
$ cat test1 1 4 2 5 3 6 $ cat test2 a b c d e f
ゴール
$ awk **ANSWER** 1 b 2 d 3 f