dotfiles/cli/fish/functions/source_files.fish

7 lines
86 B
Fish
Raw Normal View History

function source_files
for f in $argv
2020-12-06 03:44:36 +00:00
test -e $f && source $f
end
end