Re: join two files
Frost <[email protected]>
| Newsgroups | gmane.editors.sed.user |
|---|---|
| Message-ID | <[email protected]> |
Hello, Try: catEndingFile.txt >> BeginningFile.txt The >> will append the first file to the end of the second file. You can also: cat file1.txt file2.txt file3.txt > file123.txt Michael