Saravana's Musings
Showing posts with label
linux script command
.
Show all posts
Showing posts with label
linux script command
.
Show all posts
Saturday, June 12, 2010
script to replace string
#!/bin/bash
echo $PWD
for file in `grep -l "FNDesc" $PWD/*`; do
sed 's/FNDesc/RXDesc/g' $file >/tmp/$$ && mv /tmp/$$ $file
done
Older Posts
Home
Subscribe to:
Posts (Atom)