How can cp command be used to append a source file
to an already exiting destination file
use cat.
cat newfile >> oldfile
...oldfile now contains oldfile + newfile
appended to it.
How can cp command be used to append a source file
to an already exiting destination file
use cat.
cat newfile >> oldfile
...oldfile now contains oldfile + newfile
appended to it.