あるファイルを別のファイルに追加 [閉じる]

あるファイルを別のファイルに追加 [閉じる]

簡単な質問です。あるファイルを別のファイルに追加しようとしています。私はこれを試しました:

cp temp1 >> temp2 temp3

しかし、これはうまくいかないようです。

ありがとうございます。

答え1

あるファイルを別のファイルに追加します。

cat input_file >> output_file

答え2

temp1 と temp2 ファイルをリンクして temp3 ファイルを生成するには、次の手順を実行します。

cat temp1 temp2 > temp3

関連情報