mac 2つのファイルを行ごとに結合する方法
環境
macOS 11.5.2
概要
ファイルを行ごとに結合して表示するには、「paste」コマンドを利用します。
使用例
$ cat hoge.txt
<出力結果>
81
92
79
$ cat goo.txt
<出力結果>
21
22
23
「paste」コマンドを実行して、行ごとに結合します。
paste hoge.txt foo.txt
<出力結果>
81 21
92 22
79 23
Coding Changes the World
環境
macOS 11.5.2
概要
ファイルを行ごとに結合して表示するには、「paste」コマンドを利用します。
使用例
$ cat hoge.txt
<出力結果>
81
92
79
$ cat goo.txt
<出力結果>
21
22
23
「paste」コマンドを実行して、行ごとに結合します。
paste hoge.txt foo.txt
<出力結果>
81 21
92 22
79 23