~vcs-imports/gawk/master

1
2
3
4
5
6
7
{
	a=$0
	print index(a,"b")
	getline
	a = a $0
	print index(a,"b")
}