Skip to content

Commit

Permalink
fix .bashrc so that it checks all files in auto.d, not just the .sh f…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
justyns committed Nov 10, 2011
1 parent 2c849c2 commit 958a2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bashrc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export VISUAL="$EDITOR"
export PS1="\[\033[01;32m\][\u@\h\[\033[01;34m\] \w ]$\[\033[00m\]" export PS1="\[\033[01;32m\][\u@\h\[\033[01;34m\] \w ]$\[\033[00m\]"


# Source any executable files in ~/.bash/auto.d/*.sh # Source any executable files in ~/.bash/auto.d/*.sh
for file in $HOME/.bash/auto.d/*.sh; do for file in $HOME/.bash/auto.d/*; do
[ -x $file ] && . $file [ -x $file ] && . $file
done done


Expand Down

0 comments on commit 958a2e1

Please sign in to comment.