mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
5 lines
214 B
Bash
Executable File
5 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
result=$(nmcli -t -f type,state,connection d | egrep "^(tun|tap):connected" | awk -F':' '{ print $3 }')
|
|
[[ -z $result ]] || echo " $result"
|
|
# [[ -z $result ]] && echo ' N/A' || echo " $result"
|