From 8591a2278cc289c8c205a9f9e89e385951622b2a Mon Sep 17 00:00:00 2001 From: home Date: Thu, 30 Nov 2023 00:34:11 +0300 Subject: [PATCH] ls : llll sort alphabetically. --- .config/bash/module/ls.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/bash/module/ls.sh b/.config/bash/module/ls.sh index 84b71ee..963f760 100644 --- a/.config/bash/module/ls.sh +++ b/.config/bash/module/ls.sh @@ -32,7 +32,7 @@ lll() # list files recursively. llll() { - ls -RlAhvt --si --group-directories-first "$@" + ls -RlAhv --si --group-directories-first "$@" } # list files alphabetically.