applets
arch
archival
console-tools
coreutils
debianutils
docs
e2fsprogs
editors
examples
findutils
include
init
libbb
libpwdgrp
loginutils
mailutils
miscutils
modutils
networking
printutils
procps
runit
scripts
basic
kconfig
Kbuild
Kbuild.include
Makefile.IMA
Makefile.build
Makefile.clean
Makefile.host
Makefile.lib
bb_release
bloat-o-meter
checkhelp.awk
checkstack.pl
cleanup_printf2puts
defconfig
echo.c
find_bad_common_bufsiz
find_stray_common_vars
fix_ws.sh
gcc-version.sh
individual
memusage
mkconfigs
mkmakefile
objsizes
randomtest
randomtest.loop
sample_pmap
showasm
trylink
selinux
shell
sysklogd
testsuite
util-linux
.indent.pro
AUTHORS
Config.in
INSTALL
LICENSE
Makefile
Makefile.custom
Makefile.flags
Makefile.help
README
TODO
TODO_config_nommu
17 lines
268 B
Bash
Executable File
17 lines
268 B
Bash
Executable File
#!/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
|