view rename.sh @ 275:9cc81c92496e trunk

[svn] Add quoting to make autotools happy.
author chainsaw
date Sat, 10 Dec 2005 08:14:54 -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;