于一 发表于 2017-5-16 11:36:51

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' {} \
页: [1]
查看完整版本: shell:搜索目录中的txt文件,并修改文件内容