view rename.sh @ 1539:850f1eba9cbd trunk

[svn] - switch to stdlib/unistd.h for malloc (all C89/C99 systems have these). fixes bug #539.
author nenolod
date Wed, 09 Aug 2006 02:04:02 -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;