view rename.sh @ 169:cf71ec544543 trunk

[svn] Remove assembly optimizations, we want to play nicely with any system.
author nenolod
date Sun, 13 Nov 2005 12:24:31 -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;