Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LucasMonteiroi/79750c78181ae9101cd27359d5668a9d to your computer and use it in GitHub Desktop.
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
# ./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