seq2 - A clone of unix known program called "seq"
Usage: seq2 [OPTIONS]...
-s start count number (default: 1)
-e end count number (default: 10)
-i increment steps (default: 1)
-t own text for output (default: none)
-o output file (default: STDOUT)
-n turn off new line after every line (default: no)
-f Fast Mode - After each line, this will idle for x seconds (default: 0)
-v prints version info
-h prints help file
Generates numbers with follow features:
negative numbers, output file, own text, start & end number, delay after
each number etc..
This program may/should be very usable :)
$ seq2 -f 2 -l -s -20 -e 200 -i 13 -t "counting " -o
/tmp/blah
output (in file "/tmp/blah"):
counting -20
counting -7
counting 06
counting 19
counting 32
counting 45
counting 58
counting 71
counting 84
counting 97
counting 110
counting 123
counting 136
counting 149
counting 162
counting 175
counting 188