替换命令 source = $1 replace = $2 sed -i "s/$1/$2/g" `grep $1 -rl ./` 其中 grep $1 -rl ./ 表示查找当前文件夹下包含 $1 字符的所有文件 sed -i "s/$1/$2/g" input_file 表示将 input_file 中的 $1 字符替换为 $2