I'm trying to replace '.png" alt="" />'
with ''
When running
sed -i -e 's/.png" alt="" />//g' funnel.txt
I get the following:
sed: 1: "s/\.png"\ alt=""\ />//g": bad flag in substitute command: '/'
How do I correct the issue?
I'm trying to replace '.png" alt="" />'
with ''
When running
sed -i -e 's/.png" alt="" />//g' funnel.txt
I get the following:
sed: 1: "s/\.png"\ alt=""\ />//g": bad flag in substitute command: '/'
How do I correct the issue?