view rename.sh @ 535:f0464cb2f609 trunk

[svn] We now require GTK+ 2.6.x.
author nenolod
date Sat, 28 Jan 2006 09:07:49 -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;