From bcaa2bc15713c0287af6c87a4439f24682da153a Mon Sep 17 00:00:00 2001 From: Bleakley McDowell Date: Thu, 26 Mar 2020 17:16:07 -0400 Subject: [PATCH] ln -s changes --- bashrc | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/bashrc b/bashrc index 80ac87b..1bf60db 100644 --- a/bashrc +++ b/bashrc @@ -16,6 +16,12 @@ if [ -f ~/.bashrc_functions ]; then source ~/.bashrc_functions fi +# create symlink so that .bashrc is linked to your bashrc file installed by hombrew +# source /usr/local/bin/bashrc +ln -sfn /usr/local/bin/bashrc ~/.bashrc +ln -sfn /usr/local/bin/bashrc_alias ~/.bashrc_alias +ln -sfn /usr/local/bin/bashrc_colors ~/.bashrc_colors +ln -sfn /usr/local/bin/bashrc_functions ~/.bashrc_functions MYNAME='NMAAHC Media Conservation' export MYNAME @@ -34,13 +40,6 @@ export PS1="\[$BICyan\]≈:≈\[${Color_Off}\] " export LESS='-MN' -# create symlink so that .bashrc is linked to your bashrc file installed by hombrew -# source /usr/local/bin/bashrc -ln -s /usr/local/bin/bashrc ~/.bashrc -ln -s /usr/local/bin/bashrc_alias ~/.bashrc_alias -ln -s /usr/local/bin/bashrc_colors ~/.bashrc_colors -ln -s /usr/local/bin/bashrc_functions ~/.bashrc_functions - # must use double quotes here so Unix expands ${PATH} and doesn't read it as a directory # default OS X PATH: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11/bin