view rename.sh @ 203:f0f81a26b850 trunk

[svn] Verify that all files are under version control. Upload a few that were not.
author chainsaw
date Thu, 17 Nov 2005 14:57:57 -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;