Advertisement
pusatdata

BashScript - Cara Mempassword PDF

Jul 2nd, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. How To Add Password To Your PDF Docs On Ubuntu
  2. First thing you have to do is install pdftk , pdftk is complete command line pdf tool engine to manipulate PDF documents… sure its an open source ware :)
  3.  
  4. open your Ubuntu Terminal [CTRL+ALT+T]
  5. install pdftk by using this command : sudo apt-get install pdftk
  6. make sure pdftk is now installed by write this on terminal : pdftk
  7. you will see a bunch of pdftk command instructions if it already installed
  8. simply using this command to add a password to your existing pdf document
  9. pdftk <source>.pdf output <destination>.pdf userpw <password>
  10.  
  11. example:
  12.  
  13. pdftk Mydocs.pdf output Mydocs_pass.pdf userpw secretword
  14.  
  15. make sure you put complete filename and .pdf extension
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement