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 | |
| 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 |