summaryrefslogtreecommitdiff
path: root/pull-images
blob: 57ed56762d12038d49f3f516a10a9e576fcc751c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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