Mercurial > hg > fail
annotate README.txt @ 4:8dc420754023
minor upgrades to prepare for streamlining
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 23 Aug 2016 16:29:13 -0700 |
parents | d1880117acb5 |
children |
rev | line source |
---|---|
0 | 1 fail |
2 ==== | |
3 | |
4 run a program until it fails and gather statistics | |
5 | |
6 Elaborations from a favorite bash one-liner:: | |
7 | |
8 I=0; while ./do_some_things.py --param $arg; do I=$((I+1)); echo Iteration ${I}; sleep 1; done | |
9 | |
2
d1880117acb5
attempt to correct documentation display on pypi
Jeff Hammel <k0scist@gmail.com>
parents:
0
diff
changeset
|
10 |
0 | 11 fun things to try |
2
d1880117acb5
attempt to correct documentation display on pypi
Jeff Hammel <k0scist@gmail.com>
parents:
0
diff
changeset
|
12 ----------------- |
0 | 13 |
14 Russian roulette (with two chambers):: | |
15 | |
16 fail 'exit $(expr $RANDOM % 2)' | |
17 | |
18 ---- | |
19 | |
20 Jeff Hammel | |
21 | |
2
d1880117acb5
attempt to correct documentation display on pypi
Jeff Hammel <k0scist@gmail.com>
parents:
0
diff
changeset
|
22 http://k0s.org/ |