annotate rename.sh @ 1273:3b990c26fc46 trunk

[svn] - Support for the buffer indicator in playpaus.png that was apparently ignored by XMMS devs. Supports mp3 streams only, at the moment.
author nhjm449
date Fri, 16 Jun 2006 02:17:33 -0700
parents cb178e5ad177
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 files=$(grep libbeep * -Rl | xargs)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 for i in $files; do
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 echo "==> $i"
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 sed s:beep\/:audacious\/:g < $i > $i.new
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 mv $i.new $i
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 done;