*** empty log message ***

This commit is contained in:
2006-09-13 14:16:35 +00:00
parent 593c0ee800
commit 2ec4920092
4 changed files with 128 additions and 60 deletions

View File

@ -1,2 +1,3 @@
#BEGIN { t = "abc"; gsub ("abc", "[&]", t); print t; }
{ gsub ("abc", "ABC"); print $0; }
{ gsub (/ABC/, "XYZ"); print $0; }

3
ase/test/awk/t44.awk Normal file
View File

@ -0,0 +1,3 @@
#BEGIN { t = "abc"; gsub ("abc", "[&]", t); print t; }
{ c=$0; print gsub ("abc", "ABC", c); print c; }
{ gsub (/ABC/, "XYZ", c); print c; }