disable builtin echo in favor of incommon echo
authorThomas Walker Lynch <eknp9n@thomas-walker-lynch.com>
Fri, 7 Nov 2025 12:18:16 +0000 (12:18 +0000)
committerThomas Walker Lynch <eknp9n@thomas-walker-lynch.com>
Fri, 7 Nov 2025 12:18:16 +0000 (12:18 +0000)
library/bashrc

index 09ac0e4..67a3e8e 100644 (file)
@@ -37,13 +37,15 @@ if [[ "$user" == "Thomas-developer" ]]; then
   export REPO_DIR=$(home)
 fi
 
+# export JAVA_HOME=/usr/lib/jvm/default-java
+# export ANDROID_HOME=$HOME/android-sdk
+
 incommon=/home/Thomas/subu_data/incommon/executable
 if [[ ":$PATH:" != *":$incommon:"* ]]; then
   export PATH="$incommon:$PATH"
 fi
+enable -n echo   # turn off bash’s builtin echo
+hash -r          # clear command cache (optional but nice)
 systemctl --user import-environment PATH 
 
 
-# export JAVA_HOME=/usr/lib/jvm/default-java
-# export ANDROID_HOME=$HOME/android-sdk
-