From 1b6f65d631902b5fbfc7fc59c2257fe9d95d94f9 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Mon, 11 Nov 2013 16:21:19 +0100 Subject: [PATCH] added cal, hexdump and ls aliases --- .bashrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.bashrc b/.bashrc index 1b63d25..d29991b 100644 --- a/.bashrc +++ b/.bashrc @@ -6,7 +6,17 @@ HISTTIMEFORMAT="%d.%m.%Y %H:%M %Z # " # aliases alias grep='grep --color' + 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' + alias ssh='export TERM=xterm && ssh' + +alias cal='ncal -b -M' + +alias hexdump='hexdump -c' + +alias l='ls -lhatr' +alias ls='ls --color=auto' +