sh/shell/alias/ls.sh
2024-11-17 03:47:24 +01:00

28 lines
286 B
Bash

export LS_COLORS="\
di=0;94\
"
# list current directory’s entries
l() {
ls \
--all \
--color \
-l \
-p \
"${@}"
}
# list timestamps
lt() {
l \
--time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}"
}
# list timestamps recent last
ltt() {
l \
--reverse \
-t \
"${@}"
}