sh/shell/alias/ls.sh
2024-11-17 03:42:34 +01:00

14 lines
168 B
Bash

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