aboutsummaryrefslogtreecommitdiffstats
path: root/test/fpat8.awk
blob: 9c41591b2aabcca4e637f825ec3adf8335fee245 (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
	RS = ""
	FPAT = "\\w+"
}

{
	print
	$2 = "-"
	print
}