blob: 357285f02214e91b882fa95566417810236bf25e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Verbosity and settings that you pretty much just always are going to want.
alias \
cp="cp -iv" \
mv="mv -iv" \
rm="rm -vI"
# Colorize commands
alias \
ls="ls -hN --color=auto" \
grep="grep --color=auto" \
ip="ip -color=auto"
|