view rename.sh @ 981:00e3b13188c1 trunk

[svn] Correct includes, should not have taglib/ in there.
author chainsaw
date Fri, 28 Apr 2006 11:21:33 -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;