Subject: Re: pkgsrc and jot(1)
To: <>
From: David Laight <david@l8s.co.uk>
List: tech-pkg
Date: 04/05/2002 18:23:54
On Fri, Apr 05, 2002 at 08:48:32AM -0800, Jeremy C. Reed wrote:
> > the simplest solution would be to name them all in `for` statement..
> >
> >   for PATCH in 1 2 3 4 5 6 7 8 9 10 .. .. .. 270; do
> >
> > not nice but this will work everywhere without any additional utilities.
> 
> I agree that would be the easiest.

or entirely within the shell process:

    set - x
    while
	PATCH=$#
	set - x 4*
	[ $PATCH -le 270 ]
    do
	...
    done

Which is true bourbe shell...

	David

-- 
David Laight: david@l8s.co.uk