diff options
Diffstat (limited to 'scripts/memusage')
-rwxr-xr-x | scripts/memusage | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/memusage b/scripts/memusage new file mode 100755 index 000000000..863b0cb07 --- /dev/null +++ b/scripts/memusage @@ -0,0 +1,16 @@ +#!/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 |