view rename.sh @ 274:f6edd411a320 trunk

[svn] Merge a cleaned up version of the patch included with #383. Audacious should no longer go berzerk when being the DND target from Konqueror or Nautilus.
author nenolod
date Fri, 09 Dec 2005 18:12:22 -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;