view rename.sh @ 933:9a879b7ce19e trunk

[svn] - remove declarations that we don't need to have
author nenolod
date Fri, 14 Apr 2006 11:21:02 -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;