~vcs-imports/gawk/master

1
2
3
4
5
6
7
8
BEGIN {
	$0 = "aaa"
	NF = 10
	for (j = 2; j <= NF; ++j) {
		$j = "_"
	}
	print
}