From 9af4d7820ee12fa59ee02c96553e46e9831ee3e7 Mon Sep 17 00:00:00 2001 From: Reed <86171134+not-reed@users.noreply.github.com> Date: Tue, 12 Sep 2023 08:34:09 -0700 Subject: [PATCH] eza: add page (#10714) * eza: add page * eza: update title Co-authored-by: K.B.Dharun Krishna * eza: update title Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/eza.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/eza.md diff --git a/pages/common/eza.md b/pages/common/eza.md new file mode 100644 index 0000000000..0db1f395bb --- /dev/null +++ b/pages/common/eza.md @@ -0,0 +1,36 @@ +# eza + +> Modern, maintained replacement for `ls`, built on `exa`. +> More information: . + +- List files one per line: + +`eza --oneline` + +- List all files, including hidden files: + +`eza --all` + +- Long format list (permissions, ownership, size and modification date) of all files: + +`eza --long --all` + +- List files with the largest at the top: + +`eza --reverse --sort={{size}}` + +- Display a tree of files, three levels deep: + +`eza --long --tree --level={{3}}` + +- List files sorted by modification date (oldest first): + +`eza --long --sort={{modified}}` + +- List files with their headers, icons, and Git statuses: + +`eza --long --header --icons --git` + +- Don't list files mentioned in `.gitignore`: + +`eza --git-ignore`