view rename.sh @ 613:502b46145121 trunk

[svn] Run ldconfig as an install-posthook operation, some systems need it.
author nenolod
date Sat, 04 Feb 2006 11:47: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;