view rename.sh @ 1321:b7a29646eb72 trunk

[svn] - sanity checks (don't send NULL pointers off to GTK)
author nenolod
date Wed, 21 Jun 2006 02:23:25 -0700
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;