This commit is contained in:
Marc Beninca 2024-11-19 09:17:14 +01:00
parent bbcbcf28a2
commit 46704e9e37
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
29 changed files with 265 additions and 265 deletions

View file

@ -3,8 +3,8 @@ di=0;94\
"
# list current directory’s entries
l() { sh_a__ls "${@}"; }
sh_a__ls() {
l() { sa__ls "${@}"; }
sa__ls() {
ls \
--all \
--color \
@ -15,17 +15,17 @@ sh_a__ls() {
}
# list timestamps
lt() { sh_a__ls_time "${@}"; }
sh_a__ls_time() {
sh_a__ls \
lt() { sa__ls_time "${@}"; }
sa__ls_time() {
sa__ls \
--time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}"
}
# list timestamps recent last
ltr() { sh_a__ls_time_reverse "${@}"; }
sh_a__ls_time_reverse() {
sh_a__ls_time \
ltr() { sa__ls_time_reverse "${@}"; }
sa__ls_time_reverse() {
sa__ls_time \
--reverse \
-t \
"${@}"