view rename.sh @ 115:be5550234631 trunk

[svn] Add build infrastructure for General plugins :)
author nenolod
date Thu, 03 Nov 2005 21:40:28 -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;