摘要: sed -i "s/字符串1/字符串2/g" `grep 字符串1 -rl 目录` 替换目录下所有文件中 等于字符串1的字符为字符串2 tar 批量压缩备份tomcat 跳过 logs 目录 tar -zcvf web.tar.gz --exclude=*/logs/* ./* 阅读全文