nixos-config/modules/home/shell-conf/fish/functions/pullall.fish

11 lines
106 B
Fish
Raw Permalink Normal View History

2024-09-24 23:26:29 -04:00
function pullall
for dir in *
if test -d $dir
cd $dir
echo "---- " $dir "----"
git pull
cd ..
end
end
end