annotate rename.sh @ 413:97ba91ee699e trunk

[svn] Change copying of scaling properties from factor 11 -> 12, to factor 12 -> 13 when antialiasing -- results in a higher accuracy decode. It could still be wrong, we may need to do 13 -> 14 or 14 -> 15. We'll see how people like this adjustment first.
author nenolod
date Mon, 09 Jan 2006 15:00:10 -0800
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;