Mar 5, 2008 #1 moonring Technical User Feb 15, 2008 38 US Hi, Does awk , gawk support break n or continue n from awk multiple for or while loops, similar to bash shell break n and continue n.For example: Code: for (i=1; i<=x; i++) actions.... for (j=1;j<=y; j++) other actions.... break 2 # Is this supported ?
Hi, Does awk , gawk support break n or continue n from awk multiple for or while loops, similar to bash shell break n and continue n.For example: Code: for (i=1; i<=x; i++) actions.... for (j=1;j<=y; j++) other actions.... break 2 # Is this supported ?
Mar 5, 2008 Thread starter #3 moonring Technical User Feb 15, 2008 38 US Thanks a lot. Upvote 0 Downvote