aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.break1
blob: 4ed753ae43ce5c1f0c997548878f80375915c03c (plain)
1
2
3
4
5
6
7
8
9
10
	{ 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]
}