From 4469c2e5dfb7b935fdecab1200b33dde9f7f70d8 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 27 Jul 2025 14:58:10 +0200 Subject: [PATCH] ls --- sh/alias/ls.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sh/alias/ls.sh b/sh/alias/ls.sh index 13f3663..0acac40 100644 --- a/sh/alias/ls.sh +++ b/sh/alias/ls.sh @@ -8,7 +8,8 @@ di=0;94\ # list current directory’s entries #= l -a__ls() { +#| ls +rwx_ls() { ls \ --all \ --color \ @@ -20,16 +21,16 @@ a__ls() { # list timestamps #= lt -a__ls_time() { - a__ls \ +rwx_ls_time() { + rwx_ls \ --time-style "+%Y%m%d-%H%M%S%-:::z" \ "${@}" } # list timestamps recent last #= ltr -a__ls_time_reverse() { - a__ls_time \ +rwx_ls_time_reverse() { + rwx_ls_time \ --reverse \ -t \ "${@}"