From 00f67c99755d52aec4f43f092ef143664f90f92b Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sun, 14 Jun 2015 21:37:45 +0200 Subject: [PATCH] Add convenient bash aliases --- bash_profile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bash_profile b/bash_profile index 422bfc2..2560b73 100644 --- a/bash_profile +++ b/bash_profile @@ -44,8 +44,12 @@ alias la="ls -aF" alias ll="ls -lF" alias lla="ls -laF" alias grep="grep --color=auto"; +alias egrep="egrep --color=auto"; +alias fgrep="fgrep --color=auto"; +alias v="vim" alias vi="vim" alias path='echo $PATH | tr -s ":" "\n"' +alias manpath='echo $MANPATH | tr -s ":" "\n"' if [[ ${PLATFORM%%-*} == "darwin" ]]; then alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"