view rename.sh @ 194:2f351f6e4041 trunk

[svn] Fix an error on line 666, reported by Mikachu. Ironic that it *would* be line *666*.
author nenolod
date Tue, 15 Nov 2005 00:15:05 -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;