10 lines
129 B
Bash
Executable File
10 lines
129 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# Check args
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: wg-edit <interface>"
|
|
fi
|
|
|
|
sudoedit /etc/wireguard/$1.conf
|