view rename.sh @ 465:986ac3a23cb7 trunk

[svn] fixed width of the fwd button
author giacomo
date Wed, 18 Jan 2006 11:21:11 -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;