Skip to content

Instantly share code, notes, and snippets.

View codemonkeynumber24's full-sized avatar

DBA codemonkeynumber24

  • Heidelberg, Germany
View GitHub Profile
#!/bin/bash
# Check for user input
if [ -z "$1" ] || [ -z "$2" ]; then
echo "Expects: getdisplayip.sh \"VPN Interface\" \"Default Interface\""
exit 0
fi
VPNIFACE=$1
DEFIFACE=$2