Created
June 19, 2020 10:28
-
-
Save packmad/b65c5f6d92b5adb7e4483e0cbbb1f6da to your computer and use it in GitHub Desktop.
Get all openvpn (udp) config files of nordvpn
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
#!/bin/bash | |
wget https://nordvpn.com/ovpn/ | |
cat index.html | grep udp1194.ovpn | cut -d \" -f2 > configlinklist.txt | |
rm index.html | |
mkdir nordvpnconfigs/ | |
xargs wget -P nordvpnconfigs/ < configlinklist.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Läuft.