diff options
Diffstat (limited to 'bash/profile')
-rw-r--r-- | bash/profile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bash/profile b/bash/profile new file mode 100644 index 0000000..096711e --- /dev/null +++ b/bash/profile @@ -0,0 +1,17 @@ +# -*- shell-script -*- + +if test -r ~/.config/profile; then + . ~/.config/profile +fi + +if test -r ~/.config/bash/"profile-$(hostname)"; then + . ~/.config/bash/"profile-$(hostname)" +fi + +if test -r ~/work/.config/bash/profile; then + . ~/work/.config/bash/profile +fi + +if test -r ~/.config/bash/bashrc; then + . ~/.config/bash/bashrc; +fi |