catコマンドでファイルを結合する方法です。
今回は、test1.txt、test2.txt、test3.txtを結合し、test4.txtに出力させます。
ファイル準備
まず、test1.txt〜test3.txtを作成します。
以下のコマンドで作成します。
$ echo "test1" >> test1.txt
$ echo "test2" >> test2.txt
$ echo "test3" >> test3.txt
ファイルを結合
以下のコマンドで、test1.txt〜test3.txtを結合します。
$ cat test1.txt test2.txt test3.txt > test4.txt
結合したファイルの確認
$ cat test4.txt
test1
test2
test3