First Commit
This commit is contained in:
commit
bd67283438
142 changed files with 5061 additions and 0 deletions
24
Gvpn
Executable file
24
Gvpn
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
unset VPN;
|
||||
VPN=(
|
||||
'Real;~/Nextcloud2/guydev/network/wireguard/real/users/002-Guy.conf'
|
||||
'Ingt;~/Nextcloud2/guydev/network/wireguard/ingtegration/chateauguay/user/U-003-dana.conf'
|
||||
)
|
||||
|
||||
unset Items;
|
||||
|
||||
for Item in "${VPN[@]}"
|
||||
do
|
||||
echo -e "Item is: $Item"
|
||||
IFS=";" read -r Name Def <<< $Item
|
||||
echo -e "
|
||||
Name : $Name
|
||||
Def : $Def
|
||||
"
|
||||
Items+="$Name\n"
|
||||
done
|
||||
|
||||
|
||||
echo -e "${Items[@]}"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue