view rename.sh @ 99:4b2b964a7694 trunk

[svn] What i have right now is this.
author nenolod
date Tue, 01 Nov 2005 21:53:40 -0800
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;