commit | c47e8978febfa26f6f37992697c0e19cb3fd643c | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Mon May 26 18:36:37 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Mon May 26 18:36:37 2008 +0000 |
tree | 65a4745d099a9e14eadc336dcf3e5ce1c41ae5a4 | |
parent | fc9e1080320e52fb97ae694627d8101af64f3dad [diff] [blame] |
scripts: add primitive memory usage meter script
diff --git a/scripts/memusage b/scripts/memusage new file mode 100755 index 0000000..863b0cb --- /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