]> git.donarmstrong.com Git - bin.git/blobdiff - sa
added sane_editor and sa
[bin.git] / sa
diff --git a/sa b/sa
new file mode 100755 (executable)
index 0000000..54530d2
--- /dev/null
+++ b/sa
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# sync all script
+
+# attempt to sync all known svn projects
+
+if [ "$1" == "quick" ]; then
+    $IGNORE="--ignore-externals";
+fi;
+
+for dir in ~/ ~/.hide ~/projects/propel ~/bin ~/lib; do 
+    if [ -e $dir/.svn ]; then
+       svn update $IGNORE $dir;
+    fi;
+done;
\ No newline at end of file