view rename.sh @ 475:cd5793de075c trunk

[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
author nenolod
date Thu, 19 Jan 2006 15:45:01 -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;