Computer Hope

Software => BSD, Linux, and Unix => Topic started by: soha yaacoub on October 19, 2004, 05:52:43 PM

Title: using cat command to copy file to another file
Post by: soha yaacoub on October 19, 2004, 05:52:43 PM
hi..
i want to know how we use cat command to copy a file to another one.
thnx
Title: Re: using cat command to copy file to another file
Post by: blaahbzz on October 19, 2004, 11:01:47 PM
cat file1 >> file2

file1-> source file
file2-> destination file.

8)