1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 15:19:43 +01: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

510 B

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