summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter2022-02-17 11:04:21 +0000
committerPeter2022-02-17 11:04:21 +0000
commitf06f33997a7fed6f83e0c8bccb6d33015a9bf2ea (patch)
tree8aff9903ae5e45fdf8d05d9c15f6e6ceeb0eb71d
parent9078d3ed8a54f64fc58d47361177cc30d4b219c4 (diff)
downloadblog.minskio.co.uk-f06f33997a7fed6f83e0c8bccb6d33015a9bf2ea.tar.gz
blog.minskio.co.uk-f06f33997a7fed6f83e0c8bccb6d33015a9bf2ea.tar.bz2
blog.minskio.co.uk-f06f33997a7fed6f83e0c8bccb6d33015a9bf2ea.zip
Update paperwork page
-rw-r--r--content/posts/notes-on-sorting-paperwork.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/content/posts/notes-on-sorting-paperwork.md b/content/posts/notes-on-sorting-paperwork.md
index beb5bf4..dcdffac 100644
--- a/content/posts/notes-on-sorting-paperwork.md
+++ b/content/posts/notes-on-sorting-paperwork.md
@@ -68,6 +68,11 @@ qpdf input.pdf --pages input.pdf 1-2,4 -- outputfile1.pdf
qpdf input.pdf --pages input.pdf 3,5-6 -- outputfile2.pdf
```
+## Merging
+```
+qpdf second_file.pdf --pages first_file.pdf 1 second_file.pdf 1 -- output_file.pdf
+```
+
## Rotating
```
qpdf in out.pdf --rotate=180:1,4
@@ -144,3 +149,4 @@ Lastly, and the key to keeping things easy to work with, my folder structure loo
This is all kept backed up on cloud storage, as you'd expect. So finally, at the end of all this, we have sorted, digital-only paperwork, backed up online.
* **Edit 2020-07-01:** Updated vehicle insurance and tax structure
+* **Edit 2022-02-17:** Added merging pdf instructions