From 9f01ea8b5b86e1cbfe196259ea9c5848fdcd0edd Mon Sep 17 00:00:00 2001 From: Emma Dossche Date: Tue, 28 Apr 2020 11:26:58 +0200 Subject: [PATCH] documented the pwd 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..6b29bf6 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 | +| --- | --- | +| `pwd [OPTION]...` | Print the name of the current working directory | +| **Examples** | `pwd`, `pwd -L`, `pwd -P` | +| **Common Options** | `-L` (logical): name of current directory, possibly with symbolic links
`-P` (physical): avoid all symbolic links |