rwx/sh/cmd/ls.sh

30 lines
308 B
Bash
Raw Normal View History

2024-03-15 12:15:57 +01:00
export LS_COLORS="\
di=0;94\
"
2024-11-12 09:43:56 +01:00
# list current directory’s entries
2024-11-17 03:42:34 +01:00
l() {
ls \
--all \
--color \
-l \
-p \
2024-11-17 03:50:00 +01:00
--time-style "+" \
2024-11-17 03:47:24 +01:00
"${@}"
}
# list timestamps
lt() {
l \
2024-11-17 03:42:34 +01:00
--time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}"
}
2024-11-17 03:47:24 +01:00
# list timestamps recent last
ltt() {
2024-11-17 03:50:00 +01:00
lt \
2024-11-17 03:47:24 +01:00
--reverse \
-t \
"${@}"
}