view rename.sh @ 655:8fee6432cd63 trunk

[svn] Fix the scrolling in the audacious mainwin, by making sure a GTK Timeout is only registered once.
author nenolod
date Wed, 22 Feb 2006 16:30:23 -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;