1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 01:26:03 +02:00

vdir: add page (#2781)

This commit is contained in:
Marco Bonelli 2019-02-18 09:55:36 +01:00 committed by Owen Voke
parent f3d7ddd622
commit 6cf1623348

32
pages/common/vdir.md Normal file
View file

@ -0,0 +1,32 @@
# vdir
> List directory contents.
> Drop-in replacement for `ls -l`.
- 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}}`