view rename.sh @ 1438:ce0285d8cede trunk

[svn] - make the remote API actually work
author nenolod
date Fri, 28 Jul 2006 00:33:37 -0700
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;