aboutsummaryrefslogtreecommitdiff
path: root/stamp.sh
blob: 67cc848301db6d22438ab32c027e8a070e1e6be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

input=$1
watermark=$2
output=$3
abl=/tmp/all_but_first.pdf
first=/tmp/first.pdf
first_stamped=/tmp/first_stamped.pdf

# detach
pdftk $1 cat 2-r1 output $abl 
pdftk $1 cat 1 output $first 
#Stamp
pdftk $first stamp $watermark output $first_stamped
#Attach
pdftk $first_stamped $abl cat output $output