Possible Duplicate:
Why do I get “/bin/sh: Argument list too long” when passing quoted arguments?
I am using awk script inside a shell script and I am processing multiple files and for everytime I am getting the output from awk, processing it in shell and the feeding back the processd thing into awk script again.
But the problem here is, each time the data that is being processed is huge around 30000 lines which I am storing it in a single variable and I am passing into awk using the -v
option.
So I am getting an error
/usr/bin/awk: Argument list too long
Any remedy of how to solve this .. And am I clear with the question