bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-gawk] Feature request


From: David Backer
Subject: Re: [bug-gawk] Feature request
Date: Fri, 22 May 2015 19:56:33 +0200

I like the idea, as some errors (think quotes)
lead to others down the line.

Another great ieda would be to pass gawk a program
that then have gawk spit it out ecaped so that you
can do something like:

BEGIN{
   awktest = "cool-prog";
}

{
   ret = system(awktest);
   if(ret)
   # etc.
}

VS having to write a small external program and call
it repeatedly, you see the main file will be in the
RAM or swap at all times whereas any external helper
utilities might not.

Thanks



reply via email to

[Prev in Thread] Current Thread [Next in Thread]