1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00
freebsd/contrib/awk/test/psx96sub.awk
2001-11-02 21:06:08 +00:00

8 lines
201 B
Awk

BEGIN {
text = "here is some text"
repl = "<FOO&BAR \\q \\ \\\\ \\& \\\\& \\\\\\&>"
printf "orig = \"%s\", repl = \"%s\"\n", text, repl
sub(/some/, repl, text)
printf "result is \"%s\"\n", text
}