nixos-config/modules/home/shell-conf/fish/functions/pullall.fish
2025-03-21 16:50:54 -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