blob: 4ed753ae43ce5c1f0c997548878f80375915c03c [file] [log] [blame]
{ x[NR] = $0 }
END {
for (i = 1; i <= NR; i++) {
print i, x[i]
if (x[i] ~ /shen/)
break
}
print "got here"
print i, x[i]
}