You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
356 B
Bash
19 lines
356 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
VERSION="$1"
|
|
|
|
curl \
|
|
--fail \
|
|
--location \
|
|
--no-progress-meter \
|
|
--remote-name \
|
|
"https://downloads.sourceforge.net/project/sshpass/sshpass/${VERSION}/sshpass-${VERSION}.tar.gz"
|
|
tar xvf "sshpass-${VERSION}.tar.gz"
|
|
cd "sshpass-${VERSION}"
|
|
./configure
|
|
sudo make install
|