# Basic syntax: cat >> combined_files.txt # Where >> indicates appending (vs > which overwrites the file) # Example usage: # Say you want to combine all text files in the current directory into # one. To do this, run: cat *.txt >> all_text.txt