2009-08-23 22:10:08 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
url="$1"
|
|
|
|
protocol="${url%%:*}"
|
|
|
|
path="${url#$protocol://}"
|
|
|
|
server="${path%%/*}"
|
2012-06-06 13:26:48 +00:00
|
|
|
basepath="${path%/*}"
|
2009-08-23 22:10:08 +00:00
|
|
|
relpath="${path#$server}"
|
|
|
|
|
|
|
|
echo "URL: $url" >&2
|
|
|
|
|
2014-07-18 13:41:51 +00:00
|
|
|
curl -A 'text/html; text/xhtml; text/xml; */*' -L -k "$url" | sed -re 's/^/-/;s/[^a-zA-Z][hH][rR][eE][fF]=("([^"]*)"|'\''([^'\'']*)'\''|([^"'\'' <>&]+)[ <>&])/\n+\2\3\4\n-/g' | \
|
2012-06-06 13:26:48 +00:00
|
|
|
sed -e '/^-/d; s/^[+]//; /^#/d;'"s/^\\//$protocol:\\/\\/$server\\//g" | \
|
2012-12-08 20:36:38 +00:00
|
|
|
sed -re 's`^[^:]*$`'"$protocol://$basepath/&\`"
|