for y in `ls | grep .html`; do sed “s/abc/xyz/g” $y > temp; mv -f temp $y; done
« How to Boot second kernel if first fails Drop Sync/DDOS Attack »
Hello, First: nice blog. Second: You don’t need to use temporary file. Sed with option -i (in-place) can do all things at once in files. More info here http://www.gnu.org/software/sed/manual/sed.html
Fill in your details below or click an icon to log in:
You are commenting using your WordPress.com account. ( Log Out / Change )
You are commenting using your Twitter account. ( Log Out / Change )
You are commenting using your Facebook account. ( Log Out / Change )
Connecting to %s
Notify me of follow-up comments via email.
Get every new post delivered to your Inbox.
Hello,
First: nice blog.
Second: You don’t need to use temporary file. Sed with option -i (in-place) can do all things at once in files. More info here http://www.gnu.org/software/sed/manual/sed.html