view rename.sh @ 336:51b8f124936e trunk

[svn] And that concludes the story of the whacky OK button. Thank you.
author chainsaw
date Sun, 25 Dec 2005 14:19:40 -0800
parents cb178e5ad177
children
line wrap: on
line source

files=$(grep libbeep * -Rl | xargs)

for i in $files; do
	echo "==> $i"
	sed s:beep\/:audacious\/:g < $i > $i.new
	mv $i.new $i
done;