view rename.sh @ 1570:4023a295db39 trunk

[svn] - wma: use posix_memalign() instead of memalign() in some more spots - xspf: return if filename is NULL
author nenolod
date Fri, 11 Aug 2006 01:14:23 -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;