Created
July 4, 2020 11:02
-
-
Save LucasMonteiroi/79750c78181ae9101cd27359d5668a9d to your computer and use it in GitHub Desktop.
Bash script to install and connect on windscribe VPN on Linux, site: https://windscribe.com/?friend=b60irope
This file contains hidden or 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
# ./bin/bash | |
echo "----------------------------------" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "| Installing packages |" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "----------------------------------" | |
sudo apt-get install dirmngr apt-transport-https -y | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key FDC247B7 | |
sudo sh -c "echo 'deb https://repo.windscribe.com/debian buster main' > /etc/apt/sources.list.d/windscribe-repo.list" | |
sudo apt-get update | |
sudo apt-get install windscribe-cli -y | |
echo " " | |
echo "----------------------------------" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "| Login into windscribe |" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "----------------------------------" | |
echo " " | |
windscribe login | |
echo " " | |
echo "----------------------------------" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "| Connecting on windscribe |" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "----------------------------------" | |
echo " " | |
windscribe connect | |
echo " " | |
echo "----------------------------------" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "| Connected on Windscribe |" | |
echo "| |" | |
echo "| |" | |
echo "| |" | |
echo "----------------------------------" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment