view rename.sh @ 92:6bfea334e57d trunk

[svn] Pass correct endianness information to the library.
author nenolod
date Tue, 01 Nov 2005 20:18:19 -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;