#! /bin/sh

if [ "$1" = "fast" ] ; then
	:
else
	echo creating 100 fifos in the current directory
	echo 3
	sleep 1
	echo 2
	sleep 1
	echo 1
	sleep 1
fi

for I in `seq 1 100` ; do
	mknod "FIFO-$I" p
	echo creating "FIFO-$I"
done
