view rename.sh @ 391:aeb6aa8ae8d1 trunk

[svn] Remove support for .mid & .s3m; we have other plugins handling those formats already.
author chainsaw
date Wed, 04 Jan 2006 12:26:59 -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;