view rename.sh @ 1372:b861909ec6da trunk

[svn] mpgdec: - fix smart detection of MPEG streams/Xiph containers/MP3X containers/Fraunhofer VBRX containers - use smart detection instead of extension checking - avoid grabbing FLAC streams if mpgdec is loaded before libflac is.
author nenolod
date Tue, 04 Jul 2006 17:29:40 -0700
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;