b98a144355
svn path=/nixpkgs/trunk/; revision=11947
21 lines
234 B
Bash
Executable file
21 lines
234 B
Bash
Executable file
#! /bin/sh
|
|
|
|
source lib-cache.sh
|
|
|
|
get_file() {
|
|
url="$1";
|
|
|
|
if [ -n "$url" ]; then
|
|
curl "$1";
|
|
else
|
|
echo -n;
|
|
fi;
|
|
}
|
|
|
|
url="$1";
|
|
name="$2";
|
|
name=${name:-$(basename "$url")}
|
|
|
|
cached_output get_file "${name%%.*}" "$url" "${name#*.}"
|
|
|