7 lines
89 B
Bash
Executable file
7 lines
89 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PIPE="/var/run/vpnd.sock"
|
|
|
|
[ -p $PIPE ] &&
|
|
echo "$@" > $PIPE &&
|
|
cat < $PIPE
|