/ Published in: Bash
Expand |
Embed | Plain Text
sed 's/catch/send/g' FILE > TMPFILE && mv TMPFILE FILE
Comments
Subscribe to comments
You need to login to post a comment.
sed 's/catch/send/g' FILE > TMPFILE && mv TMPFILE FILE
Subscribe to comments
You need to login to post a comment.
sed -i.orig 's/catch/send/g' FILE
Oops sed -i.orig -e 's/catch/send/g' FILE
sed -i.orig 's/catch/send/g' FILE