Wednesday, February 3, 2021

bash split single page in pdf

apt-get install mupdf-tools
 
mutool poster -y 2 input.pdf output.pdf 
 
For horizontal splits, replace y with x. And you can, of course, combine the two for more complex solutions.
Source: https://unix.stackexchange.com/questions/12482