Linux/Other Distro

리눅스에서 PDF 파일 페이지 분리 합병

smores 2013. 2. 4. 22:50

http://www.linuxscrew.com/2010/06/18/the-easiest-way-to-split-and-merge-pdf-files-in-ubuntu/


The easiest way to split, merge or edit pdf files in Ubuntu is to use pdftk utility. This rather old (latest version was released in 2006) but still simple and powerful program can be installed in Ubuntu (Debian or any deb-family Linux distribution) by the following command in terminal:

sudo aptitude install pdftk
(if you run Fedora, RedHat or CentOS use this one: sudo yum install pdftk)

Split large pdf into many one-page files:

pdftk largepdfile.pdf burst

(as the result you will get many small files like pg_0001.pdf, pg_0002.pdf and so on).

Merge files into one PDF file:

pdftk *.pdf cat output onelargepdfile.pdf

pdftk is extremely powerful and makes it possible to do almost anything with input pdf files. Thus above two commands are just examples showing how to split and merge pdf files in Ubuntu easily.

'Linux > Other Distro' 카테고리의 다른 글

Puppy Linux  (5) 2013.04.05
가벼운 리눅스 - Archbang  (0) 2013.04.02
리눅스 패키지 설치 방법에 따른 분류  (0) 2012.11.08
Crunchbang 10 on VirtualBox 4.1.18  (0) 2012.07.31
Crunchbang에 한글 폰트/입력기 설치  (0) 2012.07.31