view rename.sh @ 658:a019c0e28b28 trunk

[svn] If the makefile has a HEADERS variable, then install them to the INCLUDEDIR.
author nenolod
date Wed, 22 Feb 2006 17:07:25 -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;