diff options
author | Nick White <git@njw.name> | 2015-05-21 10:52:38 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2015-05-21 10:52:38 +0100 |
commit | ed3f5476c718ff469211a4b73751c32677caa1b4 (patch) | |
tree | 717632827a76247750250fe1a99c4b8f5d8db5c2 /pull-images | |
parent | 30bf88270dde2bdfefc50e707a718b54876b7e2e (diff) | |
download | tkread-ed3f5476c718ff469211a4b73751c32677caa1b4.tar.bz2 tkread-ed3f5476c718ff469211a4b73751c32677caa1b4.zip |
Add wrapper scripts to download images as appropriate for displaying webpages
Diffstat (limited to 'pull-images')
-rwxr-xr-x | pull-images | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pull-images b/pull-images new file mode 100755 index 0000000..57ed567 --- /dev/null +++ b/pull-images @@ -0,0 +1,17 @@ +#!/bin/sh + +usage="Usage: $0 filename [urlroot]" + +test $# -eq 0 && echo "$usage" && exit 1 +test $# -gt 2 && echo "$usage" && exit 1 + +imgurls=`cat "$1" \ +| awk -F \( '/!\[[^\]]*\]\([^\)]*\)/ {print $2}' \ +| sed 's/)\]$//' \ +| awk '{print $1}'` + +for i in $imgurls; do + echo "$i" | grep -q '//' + test $? -ne 0 && i="${2}${i}" + wget "$i" +done |