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.
2 つのファイルがあり、各ファイルには複数の行を持つ 1 つの列があり、各ファイルの行は同じです。最終結果ファイルに file1 と file2 からの 2 つの列が含まれるように、2 つのファイルの列を結合するにはどうすればよいですか?
たとえば、file1 は次のとおりです。
1 2 3
file2 は次のとおりです。
a b c
期待される出力は次のとおりです。
1 a 2 b 3 c
貼り付けコマンドを使用するだけです。このように使用してください:paste file1 file2
paste file1 file2