applets
applets_sh
arch
archival
configs
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.include
Kbuild.src
Makefile.IMA
Makefile.build
Makefile.clean
Makefile.host
Makefile.lib
bb_release
bloat-o-meter
checkhelp.awk
checkstack.pl
cleanup_printf2puts
echo.c
find_bad_common_bufsiz
find_stray_common_vars
find_stray_empty_lines
fix_ws.sh
gcc-version.sh
gen_build_files.sh
memusage
mkconfigs
mkdiff_obj
mkdiff_obj_bloat
mkmakefile
objsizes
randomtest
randomtest.loop
sample_pmap
showasm
test_make_O
test_make_clean
trylink
selinux
shell
sysklogd
testsuite
util-linux
.gitignore
.indent.pro
AUTHORS
Config.in
INSTALL
LICENSE
Makefile
Makefile.custom
Makefile.flags
Makefile.help
README
TODO
TODO_unicode
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
|