view rename.sh @ 501:3a940b8dac46 trunk

[svn] Add credits.c to makefile, and fill in as much information as I have.
author nenolod
date Wed, 25 Jan 2006 18:31:49 -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;