[Novalug] What is the name of a simple command|

Jon LaBadie novalugml@jgcomp.com
Wed Apr 8 01:47:48 EDT 2009


On Wed, Apr 08, 2009 at 01:22:36AM -0400, Charles M Howe wrote:
> List,
> 
> I want to append one file to another, both created using vi. append is
> an obvious name, but man append comes back that there is no manual for
> append. What is it? concatenate, maybe?
> 

Either

    $ cat file2 >> file1
    $

Or

    $ vi file1
    :$r file2
    :wq
    $

-- 
Jon H. LaBadie                  jon@jgcomp.com
 JG Computing
 12027 Creekbend Drive		(703) 787-0884
 Reston, VA  20194		(703) 787-0922 (fax)



More information about the Novalug mailing list