Related cards:
PDF Manipulation: Decrypting a File
qpdf --decrypt --password=PASSWORD INPUT_FILE.pdf OUTPUT_FILE.pdf
Linux: Find files with text
BASIC:
grep "text string to searchâ directory-path
EXAMPLE:
$ grep "redeem reward" /home/tom/*.txt
Linux: Change Owner/Group of File
EXAMPLES
chown root /u
Change the owner of /u to "root".
chown root:staff /u
Likewise, but also change its group to "staff".
chown -hR root /u
Change the owner of /u and subfiles to "root".
Posted by Luis Romero to Custom Exposure (2015-07-17 16:16)