Skip to content

Instantly share code, notes, and snippets.

@arslanbilal
Created February 8, 2016 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arslanbilal/d37d68d94d8e53ed9c73 to your computer and use it in GitHub Desktop.
Save arslanbilal/d37d68d94d8e53ed9c73 to your computer and use it in GitHub Desktop.
Simple download shell script. Customise the file is you need something different.
#!/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