dotfiles-pub/linux/download.sh
2022-10-21 09:38:42 -06:00

13 lines
306 B
Bash
Executable file

#!/usr/bin/env bash
function download {
if [[ -x "$(command -v wget)" ]]; then
wget -qo "$2" "$1"
return $?
elif [[ -x "$(command -v curl)" ]]; then
curl -fsSL "$1" -o "$2"
return $?
fi
echo "Failed to download $1. curl or wget not installed"
return 1
}