updated.
authorChris Koeritz <fred@gruntose.com>
Sun, 9 Sep 2012 22:46:14 +0000 (18:46 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 9 Sep 2012 22:46:14 +0000 (18:46 -0400)
scripts/rev_control/report_new_files.sh [new file with mode: 0644]

diff --git a/scripts/rev_control/report_new_files.sh b/scripts/rev_control/report_new_files.sh
new file mode 100644 (file)
index 0000000..6f2e2ec
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+
+
+# a simple script for updating a set of folders on a usb stick from subversion or git.  currently
+# just runs with no parameters and expects to get all archives from wherever the files originally
+# came from.
+for i in * ; do
+  if [ -d "$i" ]; then
+    pushd $i
+    # only update if we see a repository living there.
+    if [ -d ".svn" ]; then
+      bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo
+    fi
+    popd
+  fi
+done