summaryrefslogtreecommitdiff
path: root/test/nfldstr.awk
blob: 09b4a2b8a26d99690531491a61c21bd2e8d5f5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$1 == 0 {
	print "bug"
}
{
	$0 = "0" 
	if (!$0)
		print "another bug"
	$0 = a = "0" 
	if (!$0)
		print "yet another bug"
	if ($1)
		print "a buggie"
}