This commit is contained in:
Marc Beninca 2024-11-17 03:47:24 +01:00
parent df71c07296
commit 7918a3c336
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -9,6 +9,20 @@ l() {
--color \ --color \
-l \ -l \
-p \ -p \
"${@}"
}
# list timestamps
lt() {
l \
--time-style "+%Y%m%d-%H%M%S%-:::z" \ --time-style "+%Y%m%d-%H%M%S%-:::z" \
"${@}" "${@}"
} }
# list timestamps recent last
ltt() {
l \
--reverse \
-t \
"${@}"
}