]> git.pld-linux.org Git - packages/bash.git/blobdiff - bashrc
- Finally (hope) fixed shrc.d/*.sh sourcing
[packages/bash.git] / bashrc
diff --git a/bashrc b/bashrc
index 3c5eeb10676ea92ab5cb107c0144dfd836315e6c..e3a01e68eb0235f6d9c63402f4b70650f136977d 100644 (file)
--- a/bashrc
+++ b/bashrc
@@ -10,7 +10,8 @@ PS1="[\u@\h \W]\\$ "
 
 alias which="type -p"
 
-for i in /etc/shrc.d/*.sh ; do
-       [ -r $i ] && . $i
+# SYSTEM WIDE ALIASES ETC.
+for i in `find /etc/shrc.d -name '*.sh'` ; do
+       . $i
 done
 unset i
This page took 0.046783 seconds and 4 git commands to generate.