A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash/zsh: pdfunite command not found #Debian apt-get install poppler-utils #Ubuntu apt-get install pdfunite 或者 apt-get install poppler-utils #Alpine apk add poppler #Arch Linux pacman -S poppler #Kali Linux apt-get install poppler-utils #CentOS yum install poppler-utils #Fedora dnf install poppler-utils #OS X brew install poppler #Raspbian apt-get install poppler-utils #Docker docker run cmd.cat/pdfunite pdfunite
pdfunite 是个便携式文档格式 ( PDF
) 页面合并工具。
pdfunite 是一个非常简单的工具。它也随每个 Linux 发行版一起提供。如 Ubuntu 20.04(LTS)
版本。
执行命令之后,即可看到 pdfunite 将 10个 PDF 文件,最终合并为一个 result.pdf,非常方便,如图:
pdfunite [options] PDF-sourcefile1..PDF-sourcefilen PDF-destfile
-v Print copyright and version information. -h Print usage information. (-help and --help are equivalent.)
目标文件
pdfunite 将 2 个 PDF 合并为一个 PDF:
pdfunite path/to/fileA.pdf path/to/fileB.pdf path/to/merged_output.pdf
pdfunite 将一个 PDF 文件夹合并为一个 PDF:
pdfunite path/to/directory/*.pdf path/to/merged_output.pdf
pdfunite 命令合并来自 sample1.pdf 和 sample2.pdf 的所有页面(按该顺序),并创建 sample.pdf:
pdfunite sample1.pdf sample2.pdf sample.pdf