Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 726 Bytes

cat.md

File metadata and controls

18 lines (9 loc) · 726 Bytes

cat

Can be used to print/show and concatenate/combine files.

Basic Usage

show file.txt

cat file.txt

show file.txt with line numbers

cat -n file.txt

Concatenate/combine several files into a single file:

cat file1 file2 > combined_file