1
0
mirror of synced 2025-02-25 13:54:55 +01:00
universe/all.cmd
2022-02-03 21:13:20 +00:00

11 lines
252 B
Batchfile

@echo off
for /D %%G in (%CD%\*) do if exist %%G\.git (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
git %*
cd ..
)