Created
July 25, 2012 16:58
-
-
Save hikoma/3177253 to your computer and use it in GitHub Desktop.
Converts pdf to cbz using ChainLP.exe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@set CHAINLP_DIR=C:\ChainLP40b12 | |
@set CHAINLP=%CHAINLP_DIR%\ChainLP.exe | |
@set SETTING=%CHAINLP_DIR%\%~n0.ini | |
@set OUTPUT_DIR=%~dp0 | |
@for %%f in (%*) do "%CHAINLP%" -b -ini "%SETTING%" -i %%f -o "%OUTPUT_DIR%\%%~nf.cbz" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment