Skip to content

Instantly share code, notes, and snippets.

@tribela
Created April 6, 2016 14:23
Show Gist options
  • Save tribela/dcaa6784ae54f61a853ff88340f022be to your computer and use it in GitHub Desktop.
Save tribela/dcaa6784ae54f61a853ff88340f022be to your computer and use it in GitHub Desktop.
get vpn
#!/bin/bash
vpn_lists=$(curl http://www.vpngate.net/api/iphone/ | awk -F',' '{if ($7 == "KR") print $1, $15}')
echo "${vpn_lists}" | while read line; do
hostname=${line%% *}
config=${line##* }
echo $config | base64 -di > ${hostname}.ovpn
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment