shell:搜寻目录中的txt文件,并修改文件内容
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' {} \
方法一
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' {} \