6 lines
107 B
Bash
6 lines
107 B
Bash
|
#! @shell@ -e
|
||
|
|
||
|
echo "downloading $url into $out"
|
||
|
|
||
|
@curl@ --fail --location --max-redirs 20 "$url" > "$out"
|