mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
8 lines
201 B
Awk
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
|
|
}
|