1this is a clone of unix `seq` program.
2i'm gonna implement more features soon!
3
4for installing read INSTALL
5
6sample:
7$ seq2 -f 2 -l -s -20 -e 200 -i 13 -t "counting " -o /tmp/blah
8output (in file "/tmp/blah"):
9counting  -20
10counting  -7
11counting  06
12counting  19
13counting  32
14counting  45
15counting  58
16counting  71
17counting  84
18counting  97
19counting  110
20counting  123
21counting  136
22counting  149
23counting  162
24counting  175
25counting  188
26
27
28supported:
29output file, negative numbers, own text, start, end numbers, leading zero etc..
30
31todo:
32executing programs, for & while etc..
33
34this software is originally written by cappa <cappa@referee.at>
35and stands under GPL (see http://www.fsf.org)
36have fun buddy
37cappa
38
39