view rename.sh @ 549:5a8f8c28871a trunk

[svn] reverted changes applied in r564, the backward seek behaved strangely
author giacomo
date Sun, 29 Jan 2006 14:17:45 -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;