view rename.sh @ 443:aedd5dbc1a1c trunk

[svn] Be less spammy in the audacious trace log about not being able to find files.
author nenolod
date Mon, 16 Jan 2006 10:32:57 -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;