mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
19 lines
217 B
Bash
19 lines
217 B
Bash
## .profile
|
|
|
|
# utility functions
|
|
|
|
path_append () {
|
|
PATH="$PATH:$1"
|
|
}
|
|
|
|
path_prepend () {
|
|
PATH="$1:$PATH"
|
|
}
|
|
|
|
# load all shell files
|
|
for file in ~/.dotfiles/shell/*; do
|
|
. $file
|
|
done
|
|
|
|
export PATH
|
|
# vim: ft=sh
|