aboutsummaryrefslogtreecommitdiff
path: root/scripts/memusage
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/memusage')
-rwxr-xr-xscripts/memusage16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/memusage b/scripts/memusage
new file mode 100755
index 0000000..4ef5608
--- /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