view rename.sh @ 459:03bbb5bc74c0 trunk

[svn] Change logic used for drawing the line between the numbers and the titles in the playlist.
author nenolod
date Tue, 17 Jan 2006 18:05:29 -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;