view rename.sh @ 909:46960fb15ba0 trunk

[svn] Linking fix for --as-needed LDFLAG, thanks to Diego "Flameeyes" Petteno.
author chainsaw
date Fri, 31 Mar 2006 14:55: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;