Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update script and markdown #10

Open
wants to merge 1 commit into
base: legacy
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,17 @@
### Preparing OpenVPN configs
If you have a folder of OpenVPN configs that end in `.ovpn`, then run this to modify them slightly:
```bash
cd my/openvpn/directory
ls *ovpn|while read line; do O=$(echo $line|sed 's/ //g'); mv "$line" "$O"; do
ne
cd my/openvpn/directory

ls *ovpn|while read line; do O=$(echo $line|sed 's/ //g'); mv "$line" "$O"; done

ls *ovpn|while read vpn; do echo 'keepalive 10 60
route 0.0.0.0 192.0.0.0 net_gateway
route 64.0.0.0 192.0.0.0 net_gateway
route 128.0.0.0 192.0.0.0 net_gateway
route 192.0.0.0 192.0.0.0 net_gateway' >> $vpn; done

ls *ovpn|awk -F '.' '{print $1}'|while read line; do mv $line.ovpn $line.conf; done

ls *.ovpn | while read NAME; do SHORT=$(echo -ne ${NAME}|awk -F '.' '{print $1}'); mv ${NAME} ${SHORT}.conf; done

```

Expand Down