a file contents
abc
b file contents
123
how do we concatenate b into a so that a files ?
I tried cat b > a and b >> a. no good at all.
abc
123
a file contents
abc
b file contents
123
how do we concatenate b into a so that a files ?
I tried cat b > a and b >> a. no good at all.
abc
123
worldtouch.
an ordinary client of zoneedit.com
cat b >> a (append-mode). If you use >, it will overwrite your a file.