view rename.sh @ 1191:4abdab413cf6 trunk

[svn] Updated japanese translation by dai, closes bug #384.
author chainsaw
date Mon, 12 Jun 2006 03:25:29 -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;