a1ea759dd9
svn path=/nixpkgs/trunk/; revision=16877
13 lines
294 B
Bash
Executable file
13 lines
294 B
Bash
Executable file
#! /bin/sh
|
|
|
|
url="$1"
|
|
protocol="${url%%:*}"
|
|
path="${url#$protocol://}"
|
|
server="${path%%/*}"
|
|
relpath="${path#$server}"
|
|
|
|
echo "URL: $url" >&2
|
|
|
|
curl -L -k "$url" | sed -re 's/^/-/;s/[hH][rR][eE][fF]="([^"]*)"/\n+\1\n-/g' | \
|
|
sed -e '/^-/d; s/^[+]//; /^#/d;'"s/^\\//$protocol:\\/\\/$server\\//g"
|