aboutsummaryrefslogtreecommitdiffstats
path: root/examples/startup-files/Bash_profile
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>1996-12-23 17:02:34 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:49 +0000
commitccc6cda312fea9f0468ee65b8f368e9653e1380b (patch)
treeb059878adcfd876c4acb8030deda1eeb918c7e75 /examples/startup-files/Bash_profile
parent726f63884db0132f01745f1fb4465e6621088ccf (diff)
downloadandroid_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.tar.gz
android_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.tar.bz2
android_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.zip
Imported from ../bash-2.0.tar.gz.
Diffstat (limited to 'examples/startup-files/Bash_profile')
-rw-r--r--examples/startup-files/Bash_profile14
1 files changed, 6 insertions, 8 deletions
diff --git a/examples/startup-files/Bash_profile b/examples/startup-files/Bash_profile
index b1b24c0..141e8df 100644
--- a/examples/startup-files/Bash_profile
+++ b/examples/startup-files/Bash_profile
@@ -2,9 +2,9 @@
#
default_dir=/usr/local/lib/
-if [ "$PS1" ]; then
- PS1='\u@\h(\#)$ '
- ignoreeof=3
+if [ -n "$PS1" ]; then
+ PS1='\u@\h(\#)\$ '
+ IGNOREEOF=3
fi
LOGIN_SHELL=true
@@ -12,9 +12,7 @@ LOGIN_SHELL=true
# If the user has her own init file, then use that one, else use the
# canonical one.
if [ -f ~/.bashrc ]; then
- source ~/.bashrc
-else if [ -f ${default_dir}Bashrc ]; then
- source ${default_dir}Bashrc;
- fi
+ . ~/.bashrc
+elif [ -f ${default_dir}Bashrc ]; then
+ . ${default_dir}Bashrc;
fi
-