view rename.sh @ 1503:5679777b7a3f trunk

[svn] - hook up cue plugin
author nenolod
date Fri, 04 Aug 2006 16:05:41 -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;