Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-04 00:18:48 +00:00
parent f83e06c66a
commit 44318fb1ce
8 changed files with 79 additions and 13 deletions

View File

@@ -5,9 +5,9 @@ source: https://github.com/tldr-pages/tldr.git
---
# vdir
> List directory contents.
> Drop-in replacement for `ls -l`.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/vdir-invocation.html>.
> Verbosely list directory contents.
> Drop-in replacement for `ls -l -b`.
> More information: <https://manned.org/vdir>.
- List files and directories in the current directory, one per line, with details:
@@ -15,11 +15,11 @@ source: https://github.com/tldr-pages/tldr.git
- List with sizes displayed in human-readable units (KB, MB, GB):
`vdir -h`
`vdir {{[-h|--human-readable]}}`
- List including hidden files (starting with a dot):
`vdir -a`
`vdir {{[-a|--all]}}`
- List files and directories sorting entries by size (largest first):
@@ -35,4 +35,4 @@ source: https://github.com/tldr-pages/tldr.git
- Recursively list all files and directories in a specific directory:
`vdir --recursive {{path/to/directory}}`
`vdir {{[-R|--recursive]}} {{path/to/directory}}`