umirror: ajouter les options -g et -n pour faciliter le téléchargement des livraisons APOGEE
This commit is contained in:
parent
5d3f576994
commit
bef927cc3b
17
umirror
17
umirror
|
@ -10,14 +10,23 @@ USAGE
|
|||
$scriptname [options] url [wget_options]
|
||||
|
||||
OPTIONS
|
||||
-l
|
||||
Convertir les liens pour consultation locale"
|
||||
-l, --local
|
||||
Convertir les liens pour consultation locale
|
||||
-g, --no-robots
|
||||
Ne pas tenir compte du fichier robots.txt
|
||||
-n, --no-index
|
||||
Ne pas télécharger les fichiers de la forme 'index.html*'. Utile pour
|
||||
faire un miroir d'un site ftp qui est servi en http."
|
||||
}
|
||||
|
||||
local=
|
||||
no_robots=
|
||||
no_index=
|
||||
parse_opts + "${PRETTYOPTS[@]}" \
|
||||
--help '$exit_with display_help' \
|
||||
-l local=1 \
|
||||
-l,--local local=1 \
|
||||
-g,--no-robots no_robots=1 \
|
||||
-n,--no-index no_index=1 \
|
||||
@ args -- "$@" && set -- "${args[@]}" || die "$args"
|
||||
|
||||
url="$1"; shift
|
||||
|
@ -31,4 +40,6 @@ fi
|
|||
|
||||
args=(-m -p -np)
|
||||
[ -n "$local" ] && args=("${args[@]}" -k -K)
|
||||
[ -n "$no_robots" ] && args=("${args[@]}" -e robots=off)
|
||||
[ -n "$no_index" ] && args=("${args[@]}" -R "index.html*")
|
||||
wget "${args[@]}" "$@" "$url"
|
||||
|
|
Loading…
Reference in New Issue