view rename.sh @ 327:eec397c937e6 trunk

[svn] still gives off a warning, but will do the right thing regardless.
author nenolod
date Tue, 20 Dec 2005 13:33:42 -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;