view rename.sh @ 515:802a8ed87f67 trunk

[svn] Add support for tell_audio(), an output plugin accessor which will give us the information the input plugin passed to open_audio()... XMMS design sucks and we WILL be getting rid of most of these kludges in 0.3. :P
author nenolod
date Thu, 26 Jan 2006 11:11:20 -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;