sh/shell/alias/ls.sh
2024-11-15 16:27:41 +01:00

13 lines
155 B
Bash

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