Skip to content

Commit 2e6ca47

Browse files
committed
Add linux/remove-password-from-pdf.md
1 parent 13ffd44 commit 2e6ca47

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

docs/assets/script.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ document.title = document.title.split(' ')
66
function fixCase(text) {
77
return text
88
.replace(/grapheneos/gi, 'GrapheneOS')
9-
.replace(/vpn/gi, 'VPN');
9+
.replace(/vpn/gi, 'VPN')
10+
.replace(/pdf/gi, 'PDF');
1011
}
1112

1213
const selectors = [
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
```sh
2+
# Remove password 'asdf1234' from input.pdf and save as output.pdf
3+
qpdf --password=asdf1234 --decrypt input.pdf output.pdf
4+
```

0 commit comments

Comments
 (0)