This commit is contained in:
Marc Beninca 2025-07-27 14:58:22 +02:00
parent 4469c2e5df
commit 6df34dda0a
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,37 +0,0 @@
# list files
# list colors
# * lighter blue for directories
export LS_COLORS="\
di=0;94\
"
# list current directory’s entries
#= l
#| ls
rwx_ls() {
ls \
--all \
--color \
-l \
-p \
--time-style "+" \
"${@}"
}
# list timestamps
#= lt
rwx_ls_time() {
rwx_ls \
--time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}"
}
# list timestamps recent last
#= ltr
rwx_ls_time_reverse() {
rwx_ls_time \
--reverse \
-t \
"${@}"
}