取代字串 sed -i "s/search/newstr/g" filename

 sed -i "s/search/newstr/g"  filename

在一個檔案中 取代字串

find . -type f -exec sed -i "s/search/newstr/g"

目錄下 取代字串


取代或是新字串中含有斜線  那可以改 "分開字元"

sed -i "s@http://@https://@g" filename


新增評論