Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > ac94a490e48a1fe8f352b68f4b11ccc4 > files > 31

perl-CGI-SpeedyCGI-2.220.0-12.mga5.i586.rpm

#!/bin/sh
# Simulate slow drain of stdout
while dd count=100 2>/tmp/slow_drain.$$; do
    if grep '^0+0 ' /tmp/slow_drain.$$ >/dev/null; then
	rm -f /tmp/slow_drain.$$
	exit
    fi
    sleep 1
done