Ĉi tiu deponejo arĥiviĝis je 2024-01-29. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
shellTube/lib/st-download

25 lines
429 B
Plaintext
Raw Normal View History

2016-12-22 19:14:27 -06:00
#!/bin/sh
#####################
# Name: st-download.sh
# Date: 2016-12-22
# Lisc: ISC
# Main: jadedctrl
# Desc: No beer and no TV
# make Homer go
# something-something
# Cxu ne?
#####################
2016-12-23 23:15:53 -06:00
if test -z $download_cmd
2016-12-22 19:14:27 -06:00
then
2016-12-23 23:15:53 -06:00
if type "wget" &> /dev/null
then
wget -q "$1" -O "$2"
elif type "curl" &> /dev/null
then
curl -s "$1" -o "$2"
fi
2016-12-22 19:14:27 -06:00
else
2016-12-23 23:15:53 -06:00
$download_cmd
2016-12-22 19:14:27 -06:00
fi