mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
6 lines
121 B
Bash
6 lines
121 B
Bash
# load all shell files
|
|
for file in "$DOTFILES_SHELL_DIR"/*; do
|
|
[[ -x $file ]] && source "$file"
|
|
done
|
|
|
|
# vim: ft=bash
|