How do I exit out of an awk function? "exit" stops entire program?
I do not want to return anything, I just want to get out of there on certain condition. Possible?
hari
2010-09-14 22:12:00
Aah, I can just do "return" and get out. But that way we are returning some junk. Anyways I guess this will do for me. Thanks much.
hari
2010-09-14 22:12:44
@hari, returning junk is fine as long as you don't try to *use* that junk for something.
Carl Norum
2010-09-14 22:14:31