view rename.sh @ 614:2eaaf9c7b6e5 trunk

[svn] Oops.
author nenolod
date Sat, 04 Feb 2006 17:22:10 -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;