I\'d like to add a header to a tab-delimited file but I am not sure how to do it in one line in linux.
Let us say my file is:
cat <(head -1 theFileWithHeader) theFileWithoutHeader > newfile; mv newfile theFileWithoutHeader;