view bin/stress.sh @ 780:c1ab43edf296

https://docs.python.org/3.1/distutils/uploading.html#pypi-package-display
author Jeff Hammel <k0scist@gmail.com>
date Tue, 23 Aug 2016 15:01:41 -0700
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