nixos-config/dotfiles/dot_config/fish/functions/pullall.fish
2024-09-24 23:26:29 -04:00

10 lines
106 B
Fish

function pullall
for dir in *
if test -d $dir
cd $dir
echo "---- " $dir "----"
git pull
cd ..
end
end
end