view rename.sh @ 1619:006dd0fe9835 trunk

[svn] - why is this here? it really fucks with my SVN client on OS X, so I am deleting it as it's unreferenced
author nenolod
date Tue, 05 Sep 2006 09:14:08 -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;