pdftotext: Linux / UNIX Convert a PDF File To Text Format
Install pdftotext under RedHat / RHEL / Fedora / CentOS Linux
pdftotext is installed using poppler-utils package under various Linux distributions:
# yum install poppler-utils
OR use the following under Debian / Ubuntu Linux
$ sudo apt-get update -y
$ sudo apt-get install poppler-utils
pdftotext syntax
pdftotext {PDF-file} {text-file}
How do I convert a pdf to text?
Convert a pdf file called hp-manual.pdf to hp-manual.txt, enter:
$ pdftotext hp-manual.pdf hp-manual.txt
Specifies the first page 5 and last page 10 (select 5 to 10 pages) to convert, enter:
$ pdftotext -f 5 -l 10 hp-manual.pdf hp-manual.txt
Convert a pdf file protected and encrypted by owner password:
$ pdftotext -opw 'password' hp-manual.pdf hp-manual.txt
Convert a pdf file protected and encrypted by user password:
$ pdftotext -upw 'password' hp-manual.pdf hp-manual.txt
Sets the end-of-line convention to use for text output. You can set it to unix, dos or mac. For UNIX / Linux oses, enter:
$ pdftotext -eol unix hp-manual.pdf hp-manual.txt
'IT > Linux' 카테고리의 다른 글
[linux] CURL 을 이용한 서버 접속 속도 체크 (0) | 2020.11.29 |
---|---|
[Linux] Network Interface 우선 순위 변경하기 (0) | 2020.11.29 |
[Linux] 디렉토리의 특정 대상 파일을 제외하고 조회하기 (0) | 2018.05.18 |
[Linux] OS 파라메터 NUMA 설정을 통한 멀티 코더 CPU 성능 향상 (0) | 2018.05.18 |
[Linux] FIN Time Wait 로 인한 연결 세션 Full 발생 시 조치 방법 (0) | 2018.05.18 |