2014-10-21 16:05:56 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-07-02 23:11:25 +02:00
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
# We want to catch any unexpected failure, and exit immediately
|
2014-07-02 23:11:25 +02:00
|
|
|
set -e
|
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
# Download helper for scp, to be called from the download wrapper script
|
2015-01-02 16:53:39 +01:00
|
|
|
#
|
|
|
|
# Call it as:
|
|
|
|
# .../scp [-q] OUT_FILE SRC_URL
|
|
|
|
#
|
|
|
|
# Environment:
|
2014-07-02 23:11:25 +02:00
|
|
|
# SCP : the scp command to call
|
|
|
|
|
2015-07-26 12:26:26 +02:00
|
|
|
verbose=
|
2015-01-02 16:53:39 +01:00
|
|
|
while getopts :q OPT; do
|
|
|
|
case "${OPT}" in
|
|
|
|
q) verbose=-q;;
|
|
|
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $((OPTIND-1))
|
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
output="${1}"
|
|
|
|
url="${2}"
|
2014-07-02 23:11:25 +02:00
|
|
|
|
2015-01-02 16:53:39 +01:00
|
|
|
${SCP} ${verbose} "${url}" "${output}"
|