1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dir.md
Sebastiaan Speck 1c7164c233
dir: add Dutch translation and fix placeholder (#13391)
* dir: add Dutch translation

* dir: fix typo
2024-08-13 00:42:15 +02:00

25 lines
510 B
Markdown

# dir
> List directory contents using one line per file, special characters are represented by backslash escape sequences.
> Works as `ls -C --escape`.
> More information: <https://manned.org/dir>.
- List all files, including hidden files:
`dir --all`
- List files including their author (`-l` is required):
`dir -l --author`
- List files excluding those that match a specified blob pattern:
`dir --hide={{pattern}}`
- List subdirectories recursively:
`dir --recursive`
- Display help:
`dir --help`