aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.do
blob: 1c43a476b36b9f63943d9e02b217d59c99f9c211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
NF > 0 {
	t = $0
	gsub(/[ \t]+/, "", t)
	n = split($0, y)
	if (n > 0) {
		i = 1
		s = ""
		do {
			s = s $i
		} while (i++ < NF)
	}
	if (s != t)
		print "bad at", NR
}