Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

38
vdir Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, common]
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/vdir>.
- List files and directories in the current directory, one per line, with details:
`vdir`
- List with sizes displayed in human-readable units (KB, MB, GB):
`vdir -h`
- List including hidden files (starting with a dot):
`vdir -a`
- List files and directories sorting entries by size (largest first):
`vdir -S`
- List files and directories sorting entries by modification time (newest first):
`vdir -t`
- List grouping directories first:
`vdir --group-directories-first`
- Recursively list all files and directories in a specific directory:
`vdir --recursive {{path/to/directory}}`