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
stackoverflow.com/questions/10445934/change-multiple-files
—
Matt
¿Qué has intentado hasta ahora? Edite su pregunta e incluya lo que ha intentado y por qué no funcionó.
—
EEAA
sed -i '/ http: / \ / \ cdn1 / http: / \ / \ cdn1 /' cum-comand.html sed: -e expresión # 1, char 8: comando desconocido: `\ 'sed -i' / http : \ / \ / cdn1 / http: \ / \ / cdn1 / 'cum-comand.html sed: -e expresión # 1, char 17: caracteres adicionales después del comando
—
AndreiG.
Has invertido tus barras y barras invertidas.
—
Michael Hampton