• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision20d03406ce2ed29439279da58743837187b82e36 (tree)
Zeit2019-06-01 04:45:17
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

A script to insert a blank page at a given position in a pdf.

Ändern Zusammenfassung

Diff

diff -r f6be73cf54ce -r 20d03406ce2e Bash-scripts/insert_bank_at.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Bash-scripts/insert_bank_at.sh Fri May 31 21:45:17 2019 +0200
@@ -0,0 +1,9 @@
1+#!/bin/bash
2+if [ $# -ne 3 ]
3+then
4+ echo "Usage example: ./pdfInsertBlankPageAt 5 src.pdf res.pdf"
5+ exit $E_BADARGS
6+else
7+ pdftk A=$2 B=blank.pdf cat A1-$(($1-1)) B1 A$1-end output $3
8+fi
9+