view rename.sh @ 388:14e3cf397729 trunk

[svn] Autotools do not want quoting here, apparently. Fair enough.
author chainsaw
date Tue, 03 Jan 2006 14:29:34 -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;