view rename.sh @ 1343:c81fa4bb2872 trunk

[svn] User did not test his submission. Fix based on reports by fluxinator on #audacious.
author chainsaw
date Wed, 28 Jun 2006 06:29:38 -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;