diff options
author | Brendan Coles <bcoles@gmail.com> | 2020-11-10 13:05:45 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-10 14:22:49 +0100 |
commit | 7e0204fb41b29707a17074b94add58fe1c708fad (patch) | |
tree | 1e07cdcaec25d4930715faf1a2f35992aca5eb94 /Base/usr/share/man/man1 | |
parent | 5fae567008f188edf8909c6cc517972afb13f08b (diff) | |
download | serenity-7e0204fb41b29707a17074b94add58fe1c708fad.zip |
Userland: ls: Add `-o` and `-B` / `--ignore-backups` flags
* `-B`, --ignore-backups`: Do not list implied entries ending with ~
* `-o`, In long format, do not show group information
Diffstat (limited to 'Base/usr/share/man/man1')
-rw-r--r-- | Base/usr/share/man/man1/ls.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/ls.md b/Base/usr/share/man/man1/ls.md index 762dff0044..4bd25515b4 100644 --- a/Base/usr/share/man/man1/ls.md +++ b/Base/usr/share/man/man1/ls.md @@ -19,12 +19,14 @@ 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 ~ * `-l`, `--long`: Display long info * `-t`: Sort files by timestamp * `-r`, `--reverse`: Reverse sort order * `-G`: Use pretty colors * `-i`, `--inode`: Show inode ids * `-n`, `--numeric-uid-gid`: In long format, display numeric UID/GID +* `-o`, In long format, do not show group information * `-h`, `--human-readable`: Print human-readable sizes * `-K`, `--no-hyperlinks`: Disable hyperlinks |