sed regexp tips #1
Thanks to Jigen, this is another method to add and remove semicolon with sed. The result is the same as here.
To add semicolon:
sed -e ‘s/[01]/&;/g’ foo
To remove semicolon:
sed -e ‘s/\([01]\);/\1/g’ foo
Advertisement
this blog is a feature