From eeb7adcc72a95fe22f624ac42995501b5fba6d84 Mon Sep 17 00:00:00 2001 From: Pandu POLUAN Date: Wed, 28 Feb 2024 11:56:15 +0700 Subject: [PATCH] Update Aliases table & improvement --- plugins/eza/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/plugins/eza/README.md b/plugins/eza/README.md index ac2a19b91..43af6ddee 100644 --- a/plugins/eza/README.md +++ b/plugins/eza/README.md @@ -86,13 +86,18 @@ Default: Not set, which means the default behavior of `eza` will take place. ## Aliases -Note that aliases may be modified by Configuration. +**Notes:** + +* Aliases may be modified by Configuration +* The term "files" without "only" qualifier means both files & directories | Alias | Command | Description | | ------- | ----------------- | --------------------------------------------------------------------------- | | `la` | `eza -la` | List all files (except . and ..) as a long list | -| `ldot` | `eza -ld .*` | List all dotfiles (directories shown as entries instead of recursed into) | +| `ldot` | `eza -ld .*` | List dotfiles only (directories shown as entries instead of recursed into) | +| `lD` | `eza -lD` | List only directories (excluding dotdirs) as a long list | +| `lDD` | `eza -laD` | List only directories (including dotdirs) as a long list | | `ll` | `eza -l` | List files as a long list | | `ls` | `eza` | Plain eza call | | `lS` | `eza -l -ssize` | List files as a long list, sorted by size |