tldr/pages/common/vdir.md

34 lines
764 B
Markdown
Raw Normal View History

2019-02-18 08:55:36 +00:00
# vdir
> List directory contents.
> Drop-in replacement for `ls -l`.
2021-03-30 12:46:04 +01:00
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/vdir-invocation.html>.
2019-02-18 08:55:36 +00:00
- 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}}`