view rename.sh @ 1688:a8f3d8db01a2 trunk

[svn] Made the content of the password field in the AudioScrobbler plugin invisible.
author js
date Thu, 14 Sep 2006 07:50:44 -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;