view rename.sh @ 926:3d4af4890339 trunk

[svn] Conversion of file operations to VFS. Needs stress testing, especially on Gnome-VFS.
author chainsaw
date Wed, 12 Apr 2006 13:35:24 -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;