diff rename.sh @ 0:cb178e5ad177 trunk

[svn] Import audacious source.
author nenolod
date Mon, 24 Oct 2005 03:06:47 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rename.sh	Mon Oct 24 03:06:47 2005 -0700
@@ -0,0 +1,7 @@
+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;