|
concatenating files
Hello all,
I am trying to join two text files together as a part of a shell script by using:
cat $file1 $file2 > output
My problem is that although this command works ok, but it also displays both file's contents to the shell output. Have you go any ideas how to avoid this output to the shell? (cat -u did not work)
Cheers
Spiros
|