Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/lib/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 3 kB image not shown  

Impressum download.sh   Sprache: unbekannt

 
#!/bin/sh
#
# This script expects a single argument, which should be an URL pointing to a
# file for download; it then tries to download that file, into a local file
# with the same name as the remote file.
set -e

# check whether curl is available, and if so, delegate to it
command -v curl >/dev/null 2>&1 && exec curl -L -O "$@"

# check whether wget is available, and if so, delegate to it
command -v wget >/dev/null 2>&1 && exec wget -N "$@"

# if no supported download tool is available, abort
echo "Error, failed to download: neither wget nor curl available"
exit 1

100%


[ Seitenstruktur0.17Drucken  etwas mehr zur Ethik  ]