view rename.sh @ 406:5928c035fa4e trunk

[svn] Use the pkg-config database to link with libbinio in a portable way. Requires libbinio 1.4 (or higher).
author chainsaw
date Sun, 08 Jan 2006 14:14:06 -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;