--n-class X -> --X
[nethome.git] / .bash_profile
index 7ff84cd..1105d6b 100644 (file)
@@ -1,3 +1,6 @@
-export BASH_ENV="$HOME/.bashrc";source "$BASH_ENV"
-finger
-m
+if [ -f "$HOME/.bashrc" ];then export BASH_ENV="$HOME/.bashrc";source "$BASH_ENV";fi
+
+# '2>/dev/null' as finger(1) may not be present.
+finger 2>/dev/null
+
+if [ -f "$HOME/.bash_profile.local" ];then source "$HOME/.bash_profile.local";fi