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
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
Tags sed