#!/bin/sh PROFILE="Felin" sudo systemctl stop openvpn-client@$PROFILE.service if [[ $1 = "on" ]] then sudo systemctl start openvpn-client@$PROFILE.service echo "$PROFILE started" else echo "All stopped." fi