view rename.sh @ 212:12b1fe51852e trunk

[svn] Include fix, allows the plugin to compile again.
author chainsaw
date Sun, 20 Nov 2005 06:44:16 -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;