Neil Bothwick writes:

> On Sun, 14 Dec 2008 11:47:51 +0200, Alan McKinnon wrote:
> > for I in $(seq 1 15) ; do
>
> If you're using bash or zsh,you can speed this up with
>
> for I in {1..15}; do

You can even use C style: for (( i=1; i <= 15; i++ )); do

        Wonko

Reply via email to