Skip to content

Instantly share code, notes, and snippets.

View hopejohn4peace's full-sized avatar

hopejohn4peace

View GitHub Profile
@hopejohn4peace
hopejohn4peace / get_nordvpn_upd_configs.sh
Created January 2, 2026 10:30 — forked from packmad/get_nordvpn_upd_configs.sh
Get all openvpn (udp) config files of nordvpn
#!/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