mirror of
https://github.com/cupcakearmy/memoir.git
synced 2025-12-07 23:24:59 +00:00
18 lines
206 B
Markdown
18 lines
206 B
Markdown
---
|
|
tags:
|
|
- cli
|
|
- qpdf
|
|
- pdf
|
|
- decrypt
|
|
---
|
|
|
|
# Remove password from PDFs
|
|
|
|
```bash
|
|
# Install qpdf
|
|
nix-shell -p qpdf
|
|
|
|
# Remove password
|
|
qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf
|
|
```
|