view rename.sh @ 149:908ef215f340 trunk

[svn] basic resampling code.
author nenolod
date Thu, 10 Nov 2005 18:15:39 -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;