concat 2 files to 1 

host:~/ndl>echo a > a
host:~/ndl>echo a > b
host:~/ndl>cat a b >a
cat: a: input file is output file
host:~/ndl>cat b >>a
host:~/ndl>cat a
a
a

documented on: 02-06-99 19:57:54