xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/gawksub.awk (revision a629ded1d7b2e67c2028ccbc5ba9099328cc4e1b)
1BEGIN {
2	text = "here is some text"
3	repl = "<FOO&BAR \\q \\ \\\\ \\& \\\\& \\\\\\&>"
4	printf "orig = \"%s\", repl = \"%s\"\n", text, repl
5	sub(/some/, repl, text)
6	printf "result is \"%s\"\n", text
7}
8