blob: 8d032d3a35124514dde8a048d7670188f57b2081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
##
## pdfbook: Rearrange pages of one or more PDF files into 2-up signatures
##
## Author David Firth (http://go.warwick.ac.uk/dfirth)
##
## This is a simple wrapper for pdfjam, version 2.01
##
case "${1}" in
--right-edge-binding)
shift ;
pdfjam --suffix book --signature* 4 --landscape "$@" ;;
*)
pdfjam --suffix book --signature 4 --landscape "$@" ;;
esac
|