mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-01 06:11:12 +00:00
12 lines
305 B
Bash
Executable File
12 lines
305 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
OUTPUT=""
|
|
|
|
openvpn=$(pgrep -c openvpn$)
|
|
[ "$openvpn" -gt 0 ] && OUTPUT=$(eval printf "%.0s" "{1..$openvpn}")
|
|
|
|
openfortivpn=$(pgrep -c openfortivpn$)
|
|
[ "$openfortivpn" -gt 0 ] && OUTPUT=${OUTPUT}$(eval printf '%.0s' "{1..$openfortivpn}")
|
|
|
|
echo "$OUTPUT" | sed -e 's/\(.\)/\1 /g'
|