diff options
author | Brendan Coles <bcoles@gmail.com> | 2020-11-10 17:42:41 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-10 18:56:27 +0100 |
commit | 28abfd6290ca8d740ebd8cc2c6893e92bf4c4f0f (patch) | |
tree | 9dc30ea20a71569a8672d933a5cf4e8795c05120 /Base | |
parent | 9b79ea78d3472af70479f4d1cf5fae9d4871bd9d (diff) | |
download | serenity-28abfd6290ca8d740ebd8cc2c6893e92bf4c4f0f.zip |
Userland: ls: Add `-d` / `--directory` flag
Diffstat (limited to 'Base')
-rw-r--r-- | Base/usr/share/man/man1/ls.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Base/usr/share/man/man1/ls.md b/Base/usr/share/man/man1/ls.md index 4bd25515b4..0af1c5bec2 100644 --- a/Base/usr/share/man/man1/ls.md +++ b/Base/usr/share/man/man1/ls.md @@ -19,7 +19,8 @@ If no *path* argument is provided the current working directory is used. * `--help`: Display this message * `-a`, `--all`: Show dotfiles * `-A`: Do not list implied . and .. directories -* `-B`, --ignore-backups`: Do not list implied entries ending with ~ +* `-B`, `--ignore-backups`: Do not list implied entries ending with ~ +* `-d`, `--directory`: List directories themselves, not their contents * `-l`, `--long`: Display long info * `-t`: Sort files by timestamp * `-r`, `--reverse`: Reverse sort order |