dotfiles/cli/fish/functions/source_files.fish
2020-11-22 09:38:00 +08:00

7 lines
96 B
Fish

function source_files
for f in $argv
test -e $f && source $f && return
end
end