lgsm local mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
193 B

#!/bin/bash
set -eo pipefail
main() {
local filename="shellcheck_0.3.7-1_amd64.deb"
wget "http://ftp.debian.org/debian/pool/main/s/shellcheck/$filename"
sudo dpkg -i "$filename"
}
main