usando sed para substituir strings por “/” [duplicate]

1

precisa substituir < rede > com um "192.168.61.0/24" mas não consigo fazer isso com sed,

tentou

 sed -i s/"< network>"/"192.168.61.0/24"/g file.sh

mas isso não está funcionando

    
por kevin 08.02.2013 / 07:11

1 resposta

8

Use outro separador, por exemplo,#

sed -i s#"< network>"#"192.168.61.0/24"#g file.sh

Ou escape /

sed -i s/"< network>"#"192.168.61.0\/24"/g file.sh

    
por 08.02.2013 / 07:15

Tags