Skip to content

Instantly share code, notes, and snippets.

@kbutti
Last active September 2, 2015 10:39
Show Gist options
  • Save kbutti/21041a7939a708b628d1 to your computer and use it in GitHub Desktop.
Save kbutti/21041a7939a708b628d1 to your computer and use it in GitHub Desktop.
個別にZIP圧縮.bat
echo off
:loop
if "%~n1"=="" goto end
cd /d %~dp0
"C:\Program Files\WinRAR\WinRAR.exe" A -afzip "%~dp0\%~n1" %1
echo %1
shift
goto loop
:end
echo 完了しました。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment