`

shell:搜索目录中的txt文件,并修改文件内容

 
阅读更多
方法一
find ./ -name "*.txt" | while read f; do sed -i '1i welcome to eclipseeye 23333333'; done

方法二
find ./ -name "*.txt" | xargs sed -i '1i welcome to eciipseeye 23333'


方法三
find ./ -name "*.txt" -exec sed -i '1i welcom to eciipseeye 23333' {} \

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics