Update cheatsheets

This commit is contained in:
ivuorinen
2024-10-12 00:16:39 +00:00
parent b0756d672e
commit 9e6dfc9983
21 changed files with 277 additions and 24 deletions

26
tldr/linux/pdfattach Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# pdfattach
> Add a new attachment (embedded file) to an existing PDF file.
> See also: `pdfdetach`, `pdfimages`, `pdfinfo`.
> More information: <https://manned.org/pdfattach>.
- Add a new attachment to an existing PDF file:
`pdfattach {{path/to/input.pdf}} {{path/to/file_to_attach}} {{path/to/output.pdf}}`
- Replace attachment with same name if it exists:
`pdfattach -replace {{path/to/input.pdf}} {{path/to/file_to_attach}} {{path/to/output.pdf}}`
- Display help:
`pdfattach -h`
- Display version:
`pdfattach -v`