10 lines
277 B
Bash
10 lines
277 B
Bash
### Note: If you change the name of this file, it must come AFTER colourLS.sh
|
|
### alphabetically to avoid errors from references to LS_OPTIONS
|
|
|
|
### Set command aliases
|
|
alias ll='ls $LS_OPTIONS -l'
|
|
alias l='ls $LS_OPTIONS -lA'
|
|
alias rm='rm -i'
|
|
alias mv='mv -i'
|
|
alias cp='cp -i'
|