testfile
基本解释
- n.测试文件
英汉例句
- $ awk '{ sub(/test/, "mytest");print }' testfile $ awk '{ sub(/test/, "mytest");$1};
print }' testfile 第一个例子在整个记录中匹配,替换只发生在第一次匹配发生的时候。 - $ awk '{ gsub(/test/, "mytest");print }' testfile $ awk '{ gsub(/test/, "mytest"), $1 };
print }' testfile[/pre]第一个例子在整个文档中匹配test,匹配的都被替换成mytest。