view rename.sh @ 1598:2b3dd287f1c1 trunk

[svn] - Tracks with unknown lengths shouldn't be considered 0 seconds long! :P
author nhjm449
date Sat, 26 Aug 2006 21:21:35 -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;