mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
17 lines
267 B
Plaintext
17 lines
267 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
busybox=../busybox
|
||
|
|
||
|
i=4000
|
||
|
echo "Before we started $i copies of 'busybox sleep 10':"
|
||
|
$busybox nmeter '%t %[pn] %m' | head -3
|
||
|
|
||
|
while test $i != 0; do
|
||
|
$busybox sleep 10 &
|
||
|
i=$((i-1))
|
||
|
done
|
||
|
sleep 1
|
||
|
|
||
|
echo "After:"
|
||
|
$busybox nmeter '%t %[pn] %m' | head -3
|