Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/remote/script/testTcpd.sh

17 lines
139 B
Bash
Raw Normal View History

#!/bin/dash
REP=/tmp/ipc/
SERVICE="tcpd"
2016-10-06 19:44:53 +02:00
NB=10
if [ $# -ne 0 ]
then
NB=$1
fi
for pid in `seq 1 ${NB}`
do
2016-10-28 13:58:04 +02:00
./tcpdtest.bin &
2016-10-14 17:47:08 +02:00
2016-10-03 17:30:52 +02:00
done