Last active
February 23, 2017 06:21
-
-
Save dmpatel151282/b69195d6a7a983e9b2d03fe2b97ee79a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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