Forrest logo
back to context overview

dir

List of commands for dir:

  • dir:tldr:4e4aa dir: List files including their author (`-l` is required).
    $ dir -l --author
    try on your machine
    explain this command
  • dir:tldr:73600 dir: Show the contents of the current directory.
    $ dir
    try on your machine
    explain this command
  • dir:tldr:82650 dir: List files excluding those that match a specified blob pattern.
    $ dir --hide=${pattern}
    try on your machine
    explain this command
  • dir:tldr:a01c0 dir: Show the contents of the current directory, including hidden ones.
    $ dir /A
    try on your machine
    explain this command
  • dir:tldr:b7c68 dir: List subdirectories recursively.
    $ dir --recursive
    try on your machine
    explain this command
  • dir:tldr:c68c6 dir: Display help.
    $ dir --help
    try on your machine
    explain this command
  • dir:tldr:c9d93 dir: Show the contents of a given directory.
    $ dir ${path\to\directory}
    try on your machine
    explain this command
  • dir:tldr:e79ff dir: Show the contents of a given directory, including hidden ones.
    $ dir ${path\to\directory} /A
    try on your machine
    explain this command
back to context overview