grep -v '#' file2|cat file1 - > file0
This will strip the header from file2 and create file0 as a sum of file1 and file2. It's probably best to have file1 as the bigger of the two files to join. The "-" takes the stdout from the grep as the input to the cat.
Thursday, January 20, 2005
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment