annotate rename.sh @ 1716:320ce198ab34 trunk

[svn] Our code is clean enough to not need -Wno-strict-aliasing, with the exception of playlist_list.c (so set that flag for widgets dir only).
author chainsaw
date Sat, 16 Sep 2006 15:21:56 -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;