view rename.sh @ 915:5da5c262b1ef trunk

[svn] - input proposed shorten input plugin for hacking
author nenolod
date Wed, 05 Apr 2006 07:50:49 -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;