configuring

This commit is contained in:
Matt Nish-Lapidus 2024-09-24 23:26:29 -04:00
parent a4261e3b86
commit ff513ecd10
10 changed files with 417 additions and 4 deletions

View file

@ -0,0 +1,10 @@
function pullall
for dir in *
if test -d $dir
cd $dir
echo "---- " $dir "----"
git pull
cd ..
end
end
end