0%

常用命令

记录linux常用命令

shell

  • 目录下文件中指定字符串替换
    将当前目录包括子目录的文件中printf字符串替换为print
    1
    sed -i "s/printf/print/g" `grep printf -rl ./`