Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions man/eza.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ Use this twice to also show the ‘`.`’ and ‘`..`’ directories.

: For simply listing only directories and not files, consider using the `--only-dirs` (`-D`) option as an alternative.

`--list-dirs`
: List directories matched by the given pattern instead of recursing into them.

: This is particularly useful when using globbing, as it will display only the directories that match the glob instead of their contents.

`-L`, `--level=DEPTH`
: Limit the depth of recursion.

Expand Down
1 change: 1 addition & 0 deletions src/options/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ FILTERING AND SORTING OPTIONS
show the '.' and '..' directories
-A, --almost-all equivalent to --all; included for compatibility with `ls -A`
-d, --treat-dirs-as-files list directories as files; don't list their contents
--list-dirs List directories matched by the given pattern instead of recursing into them.
-D, --only-dirs list only directories
-f, --only-files list only files
--show-symlinks explicitly show symbolic links (for use with --only-dirs | --only-files)
Expand Down
Loading