Skip to content

Instantly share code, notes, and snippets.

View gt11799's full-sized avatar
🏠
Working from home

gt11799

🏠
Working from home
View GitHub Profile
@ls0f
ls0f / install-vpn-on-ubuntu.sh
Last active September 23, 2015 08:58
install vpn on ubuntu
#!/bin/bash
default_user="vpn"
default_password="123456"
read -p "Input VPN username:(default is ${default_user})" user
read -p "Input VPN password:(default is ${default_password})" password
if [ $user=="" ];then
user=$default_user