Last active
May 13, 2017 12:31
-
-
Save meyju/621a6126432108f8042516b0ea6d2a21 to your computer and use it in GitHub Desktop.
Wget Bash Installer done right
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Transfer this over a secure connection, e.g. https | |
wget -q -O bash_installer.sh https://example.com/bash_installer.sh && \ | |
echo "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 bash_installer.sh" | sha256sum -c && \ | |
chmod +x ./bash_installer.sh && \ | |
./bash_installer.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment