IT/Software/Command Line Applications/PDF Toolkit: Difference between revisions

From msgwiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
 
(14 intermediate revisions by the same user not shown)
Line 7: Line 7:
<code>sudo snap install pdftk</code>
<code>sudo snap install pdftk</code>


# You can add this symlink back in so that other apps can access pdftk as if it was in the normal/old location
#You can add this symlink back in so that other apps can access pdftk as if it was in the normal/old location


<code>sudo ln -s /snap/pdftk/current/usr/bin/pdftk /usr/bin/pdftk</code>
<code>sudo ln -s /snap/pdftk/current/usr/bin/pdftk /usr/bin/pdftk</code>
Line 15: Line 15:
===Usage===
===Usage===


#change password status
==== Change password status ====
##You need to know the password in both cases
You need to know the password in both cases
##remove password


<code>pdftk inputFileName.pdf input_pw actualPassword output outputFileName_no_pw.pdf</code>
# remove password
##<code>pdftk inputFileName.pdf input_pw actualPassword output outputFileName_no_pw.pdf</code>
# add a password
##<code>pdftk inputFileName.pdf output outputFileName.pdf user_pw actualPassword</code>


##add a password
<br />
 
<code>pdftk inputFileName.pdf output outputFileName.pdf user_pw actualPassword</code>

Latest revision as of 14:37, 14 February 2020

PDF Toolkit or pdftk from the command line

History

  1. Worked well till somewhere in 18.04
    1. Now must be a snap install

sudo snap install pdftk

  1. You can add this symlink back in so that other apps can access pdftk as if it was in the normal/old location

sudo ln -s /snap/pdftk/current/usr/bin/pdftk /usr/bin/pdftk

Purpose

Manipulate pdf documents

Usage

Change password status

You need to know the password in both cases

  1. remove password
    1. pdftk inputFileName.pdf input_pw actualPassword output outputFileName_no_pw.pdf
  2. add a password
    1. pdftk inputFileName.pdf output outputFileName.pdf user_pw actualPassword