view rename.sh @ 1757:a406c1e2da12 trunk

[svn] Revert botched workaround, the actual 3 NULL writes will have to be addressed.
author chainsaw
date Sat, 23 Sep 2006 13:53:46 -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;