ls: refresh descriptions (#13698)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
pull/28/head
Managor 2024-09-13 22:16:26 +03:00 committed by GitHub
parent 9939c34c9e
commit e1efc6d05e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -7,30 +7,30 @@
`ls -1`
- List all files, including hidden files:
- List [a]ll files, including hidden files:
`ls -a`
- List all files, with trailing `/` added to directory names:
- List files with a trailing symbol to indicate file type (directory/, symbolic_link@, executable*, ...):
`ls -F`
- Long format list (permissions, ownership, size, and modification date) of all files:
- List [a]ll files in [l]ong format (permissions, ownership, size, and modification date):
`ls -la`
- Long format list with size displayed using human-readable units (KiB, MiB, GiB):
- List files in [l]ong format with size displayed using [h]uman-readable units (KiB, MiB, GiB):
`ls -lh`
- Long format list sorted by size (descending) recursively:
- List files in [l]ong format, sorted by [S]ize (descending) [R]ecursively:
`ls -lSR`
- Long format list of all files, sorted by modification date (oldest first):
- List files in [l]ong format, sorted by [t]ime the file was modified and in [r]everse order (oldest first):
`ls -ltr`
- Only list directories:
- Only list [d]irectories:
`ls -d */`