view rename.sh @ 110:c7b8b680505c trunk

[svn] Hook the console plugin into the build, it's ready for initial alphatesting.
author nenolod
date Wed, 02 Nov 2005 22:08:35 -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;