view rename.sh @ 579:785ec2ad4ea4 trunk

[svn] try to add a "default" make rule for $(OBJECTIVE_BINS)
author nenolod
date Thu, 02 Feb 2006 16:14:33 -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;