On Tue, 4 Feb 2003 [EMAIL PROTECTED] wrote:
> What I WANT to do is read lines from a list of data, and pass the lines
> (individually) to another script.
An easier method would be to use xargs:
xargs -l1 echo < test.data
--
"Of course I'm in shape! Round's a shape, isn't it?"
--
r
On Tue, 4 Feb 2003 at 11:53pm (-0700), [EMAIL PROTECTED] wrote:
> OK, I SURE Ive done this before, but I cant quite get the
> syntax right on this shell script.
>
> What I WANT to do is read lines from a list of data, and
> pass the lines (individually) to another script.
>
> What Im trying (a
OK, I SURE Ive done this before, but I cant quite get the
syntax right on this shell script.
What I WANT to do is read lines from a list of data, and
pass the lines (individually) to another script.
What Im trying (and I get syntax complaints) is
test.sh < test.data
where test.sh is