# HG changeset patch # User Jeff Hammel # Date 1373036868 25200 # Node ID 54e9c335e239a60011c0f14bdb0c7da696e982d8 # Parent 2c2998eabfb5e59c5b17c04c27815ab488fcc416 add some stubs diff -r 2c2998eabfb5 -r 54e9c335e239 silvermirror/scripts/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/silvermirror/scripts/__init__.py Fri Jul 05 08:07:48 2013 -0700 @@ -0,0 +1,2 @@ +# scripts for silvermirror +# started on a whim; probably ephemeral diff -r 2c2998eabfb5 -r 54e9c335e239 silvermirror/scripts/reconcile_unison.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/silvermirror/scripts/reconcile_unison.py Fri Jul 05 08:07:48 2013 -0700 @@ -0,0 +1,20 @@ +#!/usr/bin/env python + +''' +reconcile unison with remote sources +''' + +import optparse +import os +import sys + +here = os.path.dirname(os.path.realpath(__file__)) + +def main(args=sys.argv[1:]): + + usage = '%prog [options]' + parser = optparse.OptionParser(usage=usage, description=__doc__) + options, args = options.parse_args(args) + + if __name__ == '__main__': + main() diff -r 2c2998eabfb5 -r 54e9c335e239 silvermirror/scripts/sshdiff.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/silvermirror/scripts/sshdiff.py Fri Jul 05 08:07:48 2013 -0700 @@ -0,0 +1,20 @@ +#!/usr/bin/env python + +''' +diff over ssh +''' + +import optparse +import os +import sys + +here = os.path.dirname(os.path.realpath(__file__)) + +def main(args=sys.argv[1:]): + + usage = '%prog [options]' + parser = optparse.OptionParser(usage=usage, description=__doc__) + options, args = options.parse_args(args) + + if __name__ == '__main__': + main()