view rename.sh @ 692:eaf0dfa9e995 trunk

[svn] - Use pkg-config to detect libmusicbrainz.
author nenolod
date Sat, 25 Feb 2006 14:56:54 -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;