view rename.sh @ 360:222a0d71cbcf trunk

[svn] - change our slogan to "The future of UNIX multimedia." - clarify who is developing on 0.2 and who developed on the 0.1 branch. - extend our copyright to 2006
author nenolod
date Fri, 30 Dec 2005 17:39:28 -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;