From 1fd0f91c70678d63a5f4a04834080a322460f1e6 Mon Sep 17 00:00:00 2001 From: ephrs Date: Tue, 14 Apr 2020 12:25:58 +0200 Subject: [PATCH] detailed overview for cat command --- docs/addendum-10-crazy-command-list/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/addendum-10-crazy-command-list/README.md b/docs/addendum-10-crazy-command-list/README.md index 03952cc..d55a5d9 100644 --- a/docs/addendum-10-crazy-command-list/README.md +++ b/docs/addendum-10-crazy-command-list/README.md @@ -45,3 +45,9 @@ title: X - Crazy Command List | `ls [OPTIONS] [PATH]` | List information about files | | **Examples** | `ls -al`, `ls ~`, `ls /boot` | | **Common Options** | `-l` long listing
`-a` include hidden files
`-h` human readable format | + +| Command | Description | +| --- | --- | +| `cat [OPTIONS] [FILE]` | Concatenate files and print on the standard output | +| **Examples** | `cat file.txt`, `cat file1.txt file2.txt >> file3.txt` `cat -n file.txt` | +| **Common Options** | `-n` number all output lines
`-E` display $ at end of each line
`-s` suppress repeated empty output lines | \ No newline at end of file