diff --git a/MobaXterm_Pro_Installer.zip b/MobaXterm_Pro_Installer.zip new file mode 100644 index 0000000..ba2c53c Binary files /dev/null and b/MobaXterm_Pro_Installer.zip differ diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/batch/repo-pulls.cmd b/batch/repo-pulls.cmd new file mode 100644 index 0000000..763ddba --- /dev/null +++ b/batch/repo-pulls.cmd @@ -0,0 +1,15 @@ +@echo off +FOR /f "tokens=*" %%G IN ('dir /b') DO ( + if exist %%G\.git ( + echo %%G + cd %%G + git pull + cd .. + echo ==================== ) + if exist %%G\.svn ( + echo %%G + cd %%G + svn update + cd .. + echo ==================== )) +