A while ago I wrote an awk program and I swear that the only way to extract information from multiple arrays with the same set of indices was to use nested for loops:
for (title in array1)
for (title2 in array2)
if (title=title2)
....
sort of thing..
Now, it seems to be working if I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.