dotfiles/.bash_profile
2011-09-05 20:08:58 +02:00

10 lines
336 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Load ~/.bash_prompt, ~/.exports, ~/.aliases, ~/.functions and ~/.extra
# ~/.extra can be used for settings you dont want to commit
for file in bash_prompt exports aliases functions extra; do
file="$HOME/.$file"
[ -e "$file" ] && source "$file"
done
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob