view rename.sh @ 474:f3b46533da81 trunk

[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
author nenolod
date Wed, 18 Jan 2006 21:21:50 -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;