view rename.sh @ 782:4c7ee8f64d9b trunk

[svn] untag a critical fixme as it was actually deadchip smoking some craq back in the days of BMP
author nenolod
date Thu, 02 Mar 2006 08:26:55 -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;