Mercurial > hg > config
view bin/stress.sh @ 854:66321798ac82
[git] update for modern times
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 11 Dec 2017 16:56:22 +0000 |
parents | 1b8ea3a0cc9e |
children |
line wrap: on
line source
#!/bin/bash # stress test a program export I=0 while "$@" do echo ${I} I=$((I+1)) sleep 5 done