view rename.sh @ 1306:d44e5df149dc trunk

[svn] - not sure what all of that cur_dir stuff was, but I think somebody was smoking crack
author nenolod
date Sun, 18 Jun 2006 23:58:36 -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;