From 91c5e428033f1d112861b2afd9c9a8e952c917b1 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Fri, 29 Jan 2016 10:41:00 +0000 Subject: [PATCH] Remove coreutils from path and alias for gitx. --- .bashrc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.bashrc b/.bashrc index eb468d9..a979775 100644 --- a/.bashrc +++ b/.bashrc @@ -21,12 +21,6 @@ mkdir -p ~/src ~/tmp ~/var/log # Update the path with local overrides #-------------------------------------------------------------------------------- export PATH=~/bin:/usr/local/bin:/usr/local/sbin:${PATH} - -# coreutils -COREUTILS=$(brew --prefix coreutils 2>/dev/null) -if [ -s "${COREUTILS}" ]; then - export PATH=${COREUTILS}/libexec/gnubin:${PATH} -fi #-------------------------------------------------------------------------------- #-------------------------------------------------------------------------------- @@ -72,7 +66,6 @@ export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a" #-------------------------------------------------------------------------------- alias ll='ls -l' [[ -x $(which htop 2>/dev/null) ]] && alias top='htop' -alias gitx='open -a GitX .' #-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------