aboutsummaryrefslogtreecommitdiffstats
path: root/test/concat4.awk
blob: e6cf24fb37303275c49ee18f95d45e0621dcf47e (plain)
1
2
3
4
5
6
7
{
	a = $0
	print index(a,"b")
	getline
	a = a $0
	print index(a,"b")
}