view rename.sh @ 1694:02d3d6d7f223 trunk

[svn] - enforce support of our file extensions through use of the .SUFFIXES target
author nenolod
date Thu, 14 Sep 2006 14:06:45 -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;