view rename.sh @ 1162:0e5e176379e9 trunk

[svn] - remove Encoding patch, as it never worked properly anyway, and somebody complained about it causing stability problems
author nenolod
date Sat, 10 Jun 2006 18:47:51 -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;