Skip to content

Instantly share code, notes, and snippets.

@komidore64
Last active September 15, 2018 14:19
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 komidore64/485eb0fecbf297e7fc84b6c8539c7f41 to your computer and use it in GitHub Desktop.
Save komidore64/485eb0fecbf297e7fc84b6c8539c7f41 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
#
# ~/bin/dl
# chmod +x ~/bin/dl
#
# USAGE:
# dl 5B.png http://wiki.mizuumi.net/images/f/f9/Cha_5B.png
function download() {
local filename=$1
local url=$2
wget -O ${filename} ${url}
echo
file ${filename}
echo
}
download $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment