From efbd874f9287fe8b4d6062e8fc698f051b5c1e1f Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 9 Sep 2012 18:46:14 -0400 Subject: [PATCH] updated. --- scripts/rev_control/report_new_files.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/rev_control/report_new_files.sh diff --git a/scripts/rev_control/report_new_files.sh b/scripts/rev_control/report_new_files.sh new file mode 100644 index 00000000..6f2e2ecc --- /dev/null +++ b/scripts/rev_control/report_new_files.sh @@ -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 -- 2.34.1