dotfiles/fish/config/functions/append_paths.fish

7 lines
98 B
Fish

function append_paths
for f in $argv
test -e $f && set -gx PATH $f $PATH
end
end