mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
6 lines
113 B
Bash
6 lines
113 B
Bash
# load all shell files
|
|
for file in ~/.dotfiles/shell/*; do
|
|
[[ -x $file ]] && source $file
|
|
done
|
|
|
|
# vim: ft=sh
|