From bb90ce401be2ea7f3096785dd941916f6ca8e7a3 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 17 Nov 2024 03:50:00 +0100 Subject: [PATCH] fixes --- shell/alias/ls.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/alias/ls.sh b/shell/alias/ls.sh index 8be2be0..da0d1bc 100644 --- a/shell/alias/ls.sh +++ b/shell/alias/ls.sh @@ -9,6 +9,7 @@ l() { --color \ -l \ -p \ + --time-style "+" \ "${@}" } @@ -21,7 +22,7 @@ lt() { # list timestamps recent last ltt() { - l \ + lt \ --reverse \ -t \ "${@}"