view rename.sh @ 1480:a62c3f7b277b trunk

[svn] - ok, try to be less seek happy on 'natural' changes
author nenolod
date Thu, 03 Aug 2006 00:15:12 -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;