+1 vote
in Linux by
How can you append one file to another in Linux?

1 Answer

0 votes
by

To append one file to another in Linux you can use command cat file2 >> file 1. The operator >> appends the output of the named file or creates the file if it is not created. While another command cat file 1 file 2 > file 3 appends two or more files to one.

Related questions

+1 vote
asked May 9, 2021 in Linux by sharadyadav1986
+1 vote
asked Feb 18, 2021 in Linux by SakshiSharma
...