view rename.sh @ 651:c1645fb045a7 trunk

[svn] Kill the crossfader plugin. It insisted on exploding on amd64 systems and was a general pita to compile. Also, remove two unused vars from mpg123.
author chainsaw
date Sun, 19 Feb 2006 15:50:50 -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;