xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/widesub2.awk (revision 8af575c0afc1d79bd23c3e1a78a546c9963e5083)
1BEGIN {
2	Value = "abc"
3
4	print "Before <" Value "> ", index( Value, "bc" )
5
6	sub( /bc/, "bbc", Value )
7
8	print "After  <" Value ">", index( Value, "bc" )
9}
10