Skip to content

Instantly share code, notes, and snippets.

@dmpatel151282
Last active February 23, 2017 06:21
Show Gist options
  • Save dmpatel151282/b69195d6a7a983e9b2d03fe2b97ee79a to your computer and use it in GitHub Desktop.
Save dmpatel151282/b69195d6a7a983e9b2d03fe2b97ee79a to your computer and use it in GitHub Desktop.
Unzip "zip" file
Install Dependency :- apt-get install unzip'
Unzip -> unzip file.zip,
unzip file.zip -d destination_folder
Compress/Extract from/to "tar.gz" file
Compress -> tar -zcvf folder1_path folder2_path ... file.tar.gz
Extract -> tar -zxvf file.tar.gz
Merge / convert multiple PDF files into one PDF
pdfunite in-1.pdf in-2.pdf in-n.pdf out.pdf
convert sub1.pdf sub2.pdf sub3.pdf merged.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment