view rename.sh @ 643:7ca6e22bab48 trunk

[svn] Only build what the configure system tells us to build.
author chainsaw
date Sun, 19 Feb 2006 06:00:47 -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;