Ĉ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

24 lines
418 B
Plaintext
Raw Normal View History

2016-12-22 19:14:27 -06:00
#!/bin/sh
#####################
# Name: st-download.sh
# Lisc: ISC
# Main: jadedctrl
# Desc: No beer and no TV
# make Homer go
# something-something
# Cxu ne?
#####################
2016-12-26 03:58:01 -06:00
if test -z "$download_cmd"
2016-12-22 19:14:27 -06:00
then
2016-12-26 03:58:01 -06:00
if command -v wget > /dev/null
2016-12-23 23:15:53 -06:00
then
wget -q "$1" -O "$2"
2016-12-26 03:58:01 -06:00
elif command -v curl > /dev/null
2016-12-23 23:15:53 -06:00
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