摘要: find . -name file -exec echo abc > {} \; fail应该改用:find . -name file -exec bash -c 'echo abc > {}' \;或者for i in `find . -name file`do echo abc > $i... 阅读全文
posted @ 2016-01-13 15:04 格通 阅读(436) 评论(0) 推荐(0) 编辑