view rename.sh @ 1484:57ac83a14503 trunk

[svn] use -1 to indicate "drop the original cue file, but silently error" (not implemented in 1.1.x, but is backwards compatible -- also not yet implemented here. keyword YET)
author nenolod
date Thu, 03 Aug 2006 01:02:34 -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;