sh/shell/alias/ls.sh

15 lines
168 B
Bash
Raw Normal View History

2024-03-15 11:15:57 +00:00
export LS_COLORS="\
di=0;94\
"
2024-11-12 08:43:56 +00:00
# list current directory’s entries
2024-11-17 02:42:34 +00:00
l() {
ls \
--all \
--color \
-l \
-p \
--time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}"
}