Quiero reemplazar http://cdn1.domain.com
con https://cdn1.domain.com
200 archivos .html y no sé cómo hacerlo con sed.
puede alguien ayudarme con esto?
sed -i '/http:/\/\cdn1/http:/\/\cdn1/' cum-comand.html
sed: -e expression #1, char 8: unknown command: `\'
sed -i '/http:\/\/cdn1/http:\/\/cdn1/' cum-comand.html
sed: -e expression #1, char 17: extra characters after command
Respuestas:
Si están en el mismo directorio, puede hacer esto:
Si no, ejecuta find:
fuente