Created
April 7, 2016 16:08
-
-
Save wookayin/0b5402edb58bd05fdc4ec069f82b94c0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
brew install poppler | |
# 현재 디렉토리의 모든 *.pdf 패턴을 page1 만 추출해서 page1.*.pdf 로 저장 | |
for source_pdf in ./*.pdf; do | |
pdfseparate -f 1 -l 1 ${source_pdf} page1.${source_pdf} | |
done | |
pdfunite page1.* page1.merged.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment