view rename.sh @ 458:154ca7ff713f trunk

[svn] Temporarily stop building the WMA plugin until it can be fixed.
author chainsaw
date Tue, 17 Jan 2006 17:26:38 -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;