view rename.sh @ 949:2b2f719d8cbb trunk

[svn] Bug #463 - Adding a little noise to the log to help in debugging.
author nemo
date Tue, 18 Apr 2006 06:50:23 -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;