7 lines
75 B
Bash
7 lines
75 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$(pgrep openvpn)" ]; then
|
||
|
echo ""
|
||
|
else
|
||
|
echo
|
||
|
fi
|