(root)/
gawk-5.2.2/
test/
uparrfs.awk
BEGIN {
	FS = "(^x+)|( +)"
}

{
	for (i = 1; i <= NF; i++)
		printf "-->%s<--\n", $i
}