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 /read-webpage-with-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 'read-webpage-with-images')
-rwxr-xr-x | read-webpage-with-images | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/read-webpage-with-images b/read-webpage-with-images new file mode 100755 index 0000000..b6206d7 --- /dev/null +++ b/read-webpage-with-images @@ -0,0 +1,14 @@ +#!/bin/sh + +usage="Usage: $0 url" + +test $# -ne 1 && echo "$usage" && exit 1 + +t=`mktemp -d` || exit 1 +cd "$t" +f=`basename "$1"` +d=`dirname "$1"` +curl -L -s -S "$1" | iconv -t utf-8//ignore | pandoc --no-wrap -f html -t markdown > "$f" +pull-images "$f" "$d" +tkread -m < "$f" +rm -rf "$t" |