8 lines
79 B
Bash
8 lines
79 B
Bash
#!/bin/sh
|
|
|
|
if [ "$(pgrep openvpn)" ]; then
|
|
echo "#1"
|
|
else
|
|
echo "#2"
|
|
fi
|