标签: unix sed grep
使用标准unix工具查找和替换文件集合中的字符串最简洁的方法是什么?
答案 0 :(得分:4)
这就是我通常的做法:
find [whatever-files-you-want] | xargs sed -i s/string/replacement/g