view rename.sh @ 980:e91c1b844421 trunk

[svn] - Another CDDB fix! :/
author nhjm449
date Thu, 27 Apr 2006 15:52:06 -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;