como anexar dois arquivos sin bash
cat file1 file2 > file 3
Hutch Polecat
cat file1 file2 > file 3
# The last section is to prevent outputting to stdin as well
echo "Some info" | tee -a file1 file2 file3 | cat 1> /dev/null