10 lines
125 B
Bash
10 lines
125 B
Bash
|
#!/bin/dash
|
||
|
|
||
|
REP=/tmp/ipc/
|
||
|
SERVICE="tcpd"
|
||
|
|
||
|
# pid index version
|
||
|
echo "connect 127.0.0.1 6000 111111 1 1" > ${REP}${SERVICE}
|
||
|
|
||
|
|