mv
This commit is contained in:
parent
12bc25233c
commit
3108283a42
1 changed files with 0 additions and 0 deletions
29
sh/alias/ls.sh
Normal file
29
sh/alias/ls.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
export LS_COLORS="\
|
||||
di=0;94\
|
||||
"
|
||||
|
||||
# list current directory’s entries
|
||||
l() {
|
||||
ls \
|
||||
--all \
|
||||
--color \
|
||||
-l \
|
||||
-p \
|
||||
--time-style "+" \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# list timestamps
|
||||
lt() {
|
||||
l \
|
||||
--time-style "+%Y%m%d-%H%M%S%-:::z" \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# list timestamps recent last
|
||||
ltt() {
|
||||
lt \
|
||||
--reverse \
|
||||
-t \
|
||||
"${@}"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue