$ awk '{ gsub(/test/, "mytest");print }' testfile $ awk '{ gsub(/test/, "mytest"), $1 };
print }' testfile[/pre]第一在整文档中匹test,匹的都被成mytest。
$ awk '{ gsub(/test/, "mytest");print }' testfile $ awk '{ gsub(/test/, "mytest"), $1 };
print }' testfile[/pre]第一在整文档中匹test,匹的都被成mytest。
$ awk '{ sub(/test/, "mytest");print }' testfile $ awk '{ sub(/test/, "mytest");$1};
print }' testfile 第一在整录中匹,只发生在第一次匹发生的时候。
声明:以上句、词性分类均由互联网资源自动生成,部分未经过人工审核,其表达内容亦不代表本软件的观点;若发现问题,欢迎向我们指正。