mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
11 lines
269 B
Bash
Executable file
11 lines
269 B
Bash
Executable file
# show hidden files and directories
|
|
alias l.='ls -d .[^.]* ..?* --color=tty 2>/dev/null'
|
|
|
|
# long format with ISO dates
|
|
alias lll='ls -Al "--time-style=+%Y-%m-%d %H:%M:%S %4Z"'
|
|
|
|
# color less (restricted)
|
|
alias less='less -R'
|
|
|
|
# color ip route
|
|
alias ip='ip --color=auto'
|