~vcs-imports/gawk/master

1
2
3
4
5
6
7
8
BEGIN {
	FS = "(^x+)|( +)"
}
	
{
	for (i = 1; i <= NF; i++)
		printf "-->%s<--\n", $i
}