This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/dash
|
|
|
|
REP=/tmp/ipc/
|
|
SERVICE="tcpd"
|
|
|
|
# pid index version
|
|
echo "connect 127.0.0.1 6000 111111 1 1" | nc -U ${REP}${SERVICE}
|
|
sleep 1
|
|
echo "hello frero" | nc -U ${REP}111111-1-1
|
|
|
|
|