added directory parameter.
authorChris Koeritz <fred@gruntose.com>
Mon, 18 Feb 2013 03:29:53 +0000 (22:29 -0500)
committerChris Koeritz <fred@gruntose.com>
Mon, 18 Feb 2013 03:29:53 +0000 (22:29 -0500)
scripts/rev_control/report_new_files.sh
scripts/rev_control/update_these.sh

index 6f2e2ecc817bdf7cc2d187d66baa98d02cafc6b1..3fa08025e570b0b26c54ed1a5b433e71f94780ec 100644 (file)
@@ -1,10 +1,16 @@
 #!/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.
+
+dir="$1"; shift
+if [ -z "$dir" ]; then
+  dir=.
+fi
+
+pushd "$dir"
+
 for i in * ; do
   if [ -d "$i" ]; then
     pushd $i
@@ -15,3 +21,5 @@ for i in * ; do
     popd
   fi
 done
+
+popd
index 97bf928e8f3d6fdebf11f87fd6d22df31c336ed3..cdd0119a4219db835229e19a611e8ba0f0a8c8f6 100644 (file)
@@ -1,7 +1,16 @@
 #!/bin/bash
-# a simple script for updating a set of folders on a usb stick from subversion or git.  currently
+# 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.
+
+dir="$1"; shift
+if [ -z "$dir" ]; then
+  dir=.
+fi
+
+pushd "$dir"
+
 for i in * ; do
   if [ -d "$i" ]; then
     pushd $i
@@ -16,3 +25,7 @@ for i in * ; do
     popd
   fi
 done
+
+popd
+
+