dotfiles/.bash_aliases

26 lines
589 B
Bash
Raw Normal View History

2014-01-21 21:22:32 +01:00
alias grep='grep --color'
alias l='ls -lhatr'
2017-04-20 23:27:48 +02:00
#alias ls='ls --color=auto'
alias rm='rm -i'
2014-01-21 21:22:32 +01:00
# Git stuff
alias gdp='git diff --color HEAD^ HEAD'
alias gl='git log --pretty=format:"%Cgreen%h %Creset %s %Cgreenby %an (%ar) %Cred %d" --graph'
alias gdc='git diff --color'
2015-12-12 23:23:56 +01:00
alias gst='git status'
2014-01-21 21:22:32 +01:00
# export standard terminal for remote connections
#alias ssh='export TERM=xterm && ssh'
2014-01-22 11:39:16 +01:00
if [ $(which ncal >/dev/null 2>&1) ]; then
2014-01-22 11:33:35 +01:00
alias cal='ncal -b -M -3'
else
alias cal='cal -m -3'
fi
2014-01-21 21:22:32 +01:00
alias hexdump='hexdump -c'
alias pwgen='pwgen -B -s'
# open multiple files in tabs
alias vim='vim -p'