changeset 768:1b8ea3a0cc9e

stress.sh
author Jeff Hammel <k0scist@gmail.com>
date Thu, 11 Feb 2016 18:29:57 -0800
parents 35f8751c0930
children 489204193cd7
files bin/stress.sh
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/stress.sh	Thu Feb 11 18:29:57 2016 -0800
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+# stress test a program
+
+export I=0
+while "$@"
+do
+    echo ${I}
+    I=$((I+1))
+    sleep 5
+done