view rename.sh @ 313:5a20f229ece6 trunk

[svn] Revert changes; this plugin is hard to convert to configdb. Leave it for now.
author chainsaw
date Sat, 17 Dec 2005 13:51:17 -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;