Skip to content

Instantly share code, notes, and snippets.

@wookayin
Created April 7, 2016 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wookayin/0b5402edb58bd05fdc4ec069f82b94c0 to your computer and use it in GitHub Desktop.
Save wookayin/0b5402edb58bd05fdc4ec069f82b94c0 to your computer and use it in GitHub Desktop.
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