Ĉ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
Jaidyn Levesque 61d3cbbed9 Revert "BURN EVERYTHING TO THE GROUND"
This reverts commit d6d4b0e56e.
2018-02-11 14:14:25 -06:00

24 lines
418 B
Bash
Executable File

#!/bin/sh
#####################
# Name: st-download.sh
# Lisc: ISC
# Main: jadedctrl
# Desc: No beer and no TV
# make Homer go
# something-something
# Cxu ne?
#####################
if test -z "$download_cmd"
then
if command -v wget > /dev/null
then
wget -q "$1" -O "$2"
elif command -v curl > /dev/null
then
curl -s "$1" -o "$2"
fi
else
$download_cmd
fi