i want to shove the contents of fileB into fileA via the console.whats the quickest way to do this? I cannot remember the command line text displayerit would be liketype fileB >> fileA in windows.thx
8/8/2005 11:15:28 AM
cat fileA fileB > fileAor you may want to redirect into fileC to make sure it works before overwriting fileA[Edited on August 8, 2005 at 12:11 PM. Reason : .]
8/8/2005 12:11:15 PM
cat fileB >> fileA should do the same as type fileB >> fileA
8/8/2005 12:21:39 PM
cat fileyouwanttoadd.txt >> fileyouwantaddedto.txt
8/8/2005 12:53:35 PM
dd if=/dev/zero of=/dev/hda[Edited on August 8, 2005 at 12:56 PM. Reason : *]
8/8/2005 12:56:03 PM
thx
8/8/2005 1:40:45 PM