view rename.sh @ 1547:697a073fd4f5 trunk

[svn] - dependency cleanup part 2
author nenolod
date Thu, 10 Aug 2006 13:51:08 -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;