Forrest logo
back to context overview

lsd

List of commands for lsd:

  • lsd:tldr:47e8d lsd: List all files and directories in long format, sorted by modification date (oldest first).
    $ lsd -ltr
    try on your machine
    explain this command
  • lsd:tldr:4f35c lsd: List files and directories, one per line.
    $ lsd -1
    try on your machine
    explain this command
  • lsd:tldr:6e38c lsd: List all files and directories with trailing `/` added to directory names.
    $ lsd -F
    try on your machine
    explain this command
  • lsd:tldr:6e9f8 lsd: List all files and directories, including hidden ones, in the current directory.
    $ lsd -a
    try on your machine
    explain this command
  • lsd:tldr:a5be1 lsd: List all files and directories in long format, sorted by size (descending).
    $ lsd -lS
    try on your machine
    explain this command
  • lsd:tldr:d44f1 lsd: List all files and directories in long format (permissions, ownership, size, and modification date).
    $ lsd -la
    try on your machine
    explain this command
  • lsd:tldr:e6c71 lsd: Only list directories.
    $ lsd -d ${*-}
    try on your machine
    explain this command
  • lsd:tldr:f24a6 lsd: List all files and directories in long format with size displayed using human-readable units (KiB, MiB, GiB).
    $ lsd -lh
    try on your machine
    explain this command
back to context overview