view rename.sh @ 266:48f8c5df8d7e trunk

[svn] Kill some warnings here -- the other warnings I can't kill yet, as I've not yet been able to decipher the voodoo.
author nenolod
date Thu, 08 Dec 2005 11:44:32 -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;