summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff-backup
diff options
context:
space:
mode:
authorben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-06-16 07:11:53 +0000
committerben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-06-16 07:11:53 +0000
commitce91965bea2afcb8bf0df5089e455056cc925f1d (patch)
tree02dc9a08c47c329c04dea96b92868903dbf3a526 /rdiff-backup/rdiff-backup
parentb72d8da27679c48ace0c493fc9993e1271428dae (diff)
downloadrdiff-backup-ce91965bea2afcb8bf0df5089e455056cc925f1d.tar.gz
New startup script
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@128 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff-backup')
-rwxr-xr-xrdiff-backup/rdiff-backup22
1 files changed, 22 insertions, 0 deletions
diff --git a/rdiff-backup/rdiff-backup b/rdiff-backup/rdiff-backup
new file mode 100755
index 0000000..fe6ff71
--- /dev/null
+++ b/rdiff-backup/rdiff-backup
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+#
+# rdiff-backup -- Mirror files while keeping incremental changes
+# Version 0.8.0 released June 14, 2002
+# Copyright (C) 2001, 2002 Ben Escoto <bescoto@stanford.edu>
+#
+# This program is licensed under the GNU General Public License (GPL).
+# Distributions of rdiff-backup usually include a copy of the GPL in a
+# file called COPYING. The GPL is also available online at
+# http://www.gnu.org/copyleft/gpl.html.
+#
+# See http://www.stanford.edu/~bescoto/rdiff-backup for more
+# information. Please send mail to me or the mailing list if you find
+# bugs or have any suggestions.
+
+import sys
+import rdiff_backup.Main
+
+if __name__ == "__main__" and not globals().has_key('__no_execute__'):
+ rdiff_backup.Main.Main(sys.argv[1:])
+
+