view rename.sh @ 1309:816ea8bbde1c trunk

[svn] - if tuple->length == -1 then don't show a length
author nenolod
date Mon, 19 Jun 2006 01:51:01 -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;