rm alias, cal check
This commit is contained in:
parent
e319093ed6
commit
b62082867f
1 changed files with 6 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
alias grep='grep --color'
|
alias grep='grep --color'
|
||||||
alias l='ls -lhatr'
|
alias l='ls -lhatr'
|
||||||
alias ls='ls --color=auto'
|
alias ls='ls --color=auto'
|
||||||
|
alias rm='rm -I'
|
||||||
|
|
||||||
# Git stuff
|
# Git stuff
|
||||||
alias gdp='git diff --color HEAD^ HEAD'
|
alias gdp='git diff --color HEAD^ HEAD'
|
||||||
|
|
@ -10,7 +11,11 @@ alias gdc='git diff --color'
|
||||||
# export standard terminal for remote connections
|
# export standard terminal for remote connections
|
||||||
#alias ssh='export TERM=xterm && ssh'
|
#alias ssh='export TERM=xterm && ssh'
|
||||||
|
|
||||||
alias cal='ncal -b -M'
|
if [ $(which ncal) ]; then
|
||||||
|
alias cal='ncal -b -M -3'
|
||||||
|
else
|
||||||
|
alias cal='cal -m -3'
|
||||||
|
fi
|
||||||
|
|
||||||
alias hexdump='hexdump -c'
|
alias hexdump='hexdump -c'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue