Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

List Directory - Manage Linux Files | Online Free DevTools by Hexmos

List directory contents quickly with DIR command. Manage Linux files and directories efficiently, including hidden files and subdirectories. Free online tool, no registration required.

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 {{[-a|--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 {{[-R|--recursive]}}

  • Display help:

dir --help

return

See Also