Mercurial > audlegacy
view rename.sh @ 991:3eff4f35b39d trunk
[svn] Declare variables in a different order, as GCC feels that the current order was wrong.
author | chainsaw |
---|---|
date | Sun, 30 Apr 2006 16:48:20 -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;