Cmd Generator

cat

Concatenate files and print on the standard output.

cat

Examples

# View a file
cat file.txt

# Number all lines
cat -n file.txt

# Number non-blank lines
cat -b file.txt

# Show line endings
cat -E file.txt

# Combine multiple files
cat file1.txt file2.txt > combined.txt