view rename.sh @ 1243:7c765d74d643 trunk

[svn] - fill in the length part of the tuple (oops)
author nenolod
date Wed, 14 Jun 2006 23:24:23 -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;