Live Chat!

concatenation

          0 votos

September 17th, 2006 mysurface Posted in Text Manipulation, cat | Hits: 3652 |

Just to highlight 2 examples of cat here,

simple cat from one file to another,

cat file1 > file2

all content of file2 will be overwrite and replace with content of file1.

cat file1 >> file2

all content of file1 will be paste bellow the content of file2.

Leave a Reply