Created
February 8, 2016 16:52
-
-
Save arslanbilal/d37d68d94d8e53ed9c73 to your computer and use it in GitHub Desktop.
Simple download shell script. Customise the file is you need something different.
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
#!/bin/sh | |
echo downloading pdf.. | |
wget www.pdf995.com/samples/pdf.pdf | |
echo pdf downloaded. | |
echo changing the name from pdf.pdf to new-name.pdf.. | |
mv pdf.pdf new-name.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment