view rename.sh @ 1490:ded11c19cc0a trunk

[svn] - do things in a less hackish way
author nenolod
date Thu, 03 Aug 2006 22:54:57 -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;