aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile21
1 files changed, 1 insertions, 20 deletions
diff --git a/bash/bash_profile b/bash/bash_profile
index 6c0b3cb0..0447bddd 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -1,22 +1,3 @@
-# Source .bashrc if it exists.
+# Just source .bashrc if it exists.
[[ -e "${HOME}/.bashrc" ]] && source "${HOME}/.bashrc"
-# Add various paths if they exist.
-DIRS="${HOME}/bin
- /usr/local/apache/bin
- /usr/local/mysql/bin
- /usr/local/nagios/bin
- /usr/local/pgsql/bin"
-for DIR in $DIRS; do
- if [[ -d "$DIR" ]] && [[ ":${PATH}:" != *":${DIR}:"* ]]; then
- if [[ -n "$PATH" ]]; then
- PATH="${DIR}:${PATH}"
- else
- PATH=$DIR
- fi
- fi
-done
-
-# None of this UTF8 drawing characters nonsense.
-export NCURSES_NO_UTF8_ACS=1
-