第一种方式
sed -i "s/替换的目标/替换之后的内容/g" 要进行替换的文件。
第二种方式:
echo "要进行替换的字符串" | sed -e "s/替换的目标/替换之后的内容/g"
第三种方式:
firstStr=$1
secondStr=$2
replacestr=$3
echo "======firststr is ====== ${firstStr}"
echo "======secondstr is ======= ${secondStr}"
echo "${firstStr/$secondStr/$replacestr}"
原文地址:https://www.cnblogs.com/Hackerman/p/12575205.html
时间: 2024-11-11 02:38:33