dotfiles/home/profile
2012-08-13 15:51:59 +02:00

9 lines
138 B
Bash

## .profile
# load all shell files
for file in ~/.dotfiles/shell/*; do
[[ -x $file ]] && source $file
done
export PATH
# vim: ft=sh