25 lines
429 B
Bash
Executable File
25 lines
429 B
Bash
Executable File
#!/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?
|
|
#####################
|
|
|
|
if test -z $download_cmd
|
|
then
|
|
if type "wget" &> /dev/null
|
|
then
|
|
wget -q "$1" -O "$2"
|
|
elif type "curl" &> /dev/null
|
|
then
|
|
curl -s "$1" -o "$2"
|
|
fi
|
|
else
|
|
$download_cmd
|
|
fi
|