From 932dda2dbf1b2969f76a27a04e19fa07f995cee5 Mon Sep 17 00:00:00 2001 From: Munroe Herman Date: Sun, 24 May 2020 15:46:11 +0200 Subject: [PATCH] replaced ls command description with that of concatenation (cat) --- docs/addendum-10-crazy-command-list/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/addendum-10-crazy-command-list/README.md b/docs/addendum-10-crazy-command-list/README.md index 03952cc..597b2de 100644 --- a/docs/addendum-10-crazy-command-list/README.md +++ b/docs/addendum-10-crazy-command-list/README.md @@ -42,6 +42,6 @@ title: X - Crazy Command List | Command | Description | | --- | --- | -| `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 | +| `cat [OPTION] [FILE]` | Concatenate files and print on the standard output | +| **Examples** | `cat -n`, `cat -b` | +| **Common Options** | `-n` number all output lines
`-b` number nonempty output lines, overrides -n |