cat โ€” Print and concatenate files. # source: tldr ยท verified Examples: # Print the contents of a file to `stdout` [GNU] $ cat path/to/file # Concatenate several files into an output file [GNU] $ cat path/to/file1 path/to/file2 ... > path/to/output_file # Append several files to an output file [GNU] $ cat path/to/file1 path/to/file2 ... >> path/to/output_file # โœŽ Wrong or incomplete? Improve this page โ†’ https://curlhub.sh/man/cat