(root)/
gawk-5.2.2/
test/
gensub2.awk
BEGIN {
	print gensub("x","y",2,"xx")
	print gensub("x","y","2","xx")
	print gensub("x","y","a","xx")
}