12 lines
306 B
Ruby
12 lines
306 B
Ruby
|
#!/usr/local/bin/ruby
|
||
|
#
|
||
|
# assemble single pdfs into single document for futurist fieldguide
|
||
|
|
||
|
repo="/home/nik/pandoc/futurist-fieldguide/"
|
||
|
doku="/var/www/libarynth/dokuwiki/data/pages/futurist_fieldguide/"
|
||
|
user="www-data"
|
||
|
|
||
|
# merge single pdfs
|
||
|
`pdfjoin #{repo}/print/*.pdf --outfile #{repo}/fieldguide.pdf`
|
||
|
|