better formatting of output.
authorChris Koeritz <fred@gruntose.com>
Sat, 23 Mar 2013 18:17:28 +0000 (14:17 -0400)
committerChris Koeritz <fred@gruntose.com>
Sat, 23 Mar 2013 18:17:28 +0000 (14:17 -0400)
scripts/rev_control/report_new_files.sh
scripts/rev_control/update_these.sh

index 3fa08025e570b0b26c54ed1a5b433e71f94780ec..84ac828a493b50e9da8a73a1d35c96440c95080c 100644 (file)
@@ -13,12 +13,14 @@ pushd "$dir"
 
 for i in * ; do
   if [ -d "$i" ]; then
-    pushd $i
+    echo "[$i]"
+    pushd $i &>/dev/null
     # only update if we see a repository living there.
     if [ -d ".svn" ]; then
       bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo
     fi
-    popd
+    popd &>/dev/null
+    echo "======="
   fi
 done
 
index cdd0119a4219db835229e19a611e8ba0f0a8c8f6..b0cc4b8aad25980d7b2febca1a12cc79fa7eac93 100644 (file)
@@ -9,11 +9,12 @@ if [ -z "$dir" ]; then
   dir=.
 fi
 
-pushd "$dir"
+pushd "$dir" &>/dev/null
 
 for i in * ; do
   if [ -d "$i" ]; then
-    pushd $i
+    echo "[$i]"
+    pushd $i &>/dev/null
     # only update if we see a repository living there.
     if [ -d ".svn" ]; then
       svn update .
@@ -22,10 +23,11 @@ for i in * ; do
     elif [ -d "CVS" ]; then
       cvs update .
     fi
-    popd
+    popd &>/dev/null
+    echo "======="
   fi
 done
 
-popd
+popd &>/dev/null