Index: bin/stamps
===================================================================
--- bin/stamps	(revision 41)
+++ bin/stamps	(revision 55)
@@ -28,4 +28,6 @@
     elif args.import_file:
         s.import_stamps(args.import_file)
+    elif args.push:
+        s.push_stamps(args.customer, args.filter)
     else:
         s.show_stamps(args.customer, args.filter, args.verbose, args.sum)
Index: stamper/cli.py
===================================================================
--- stamper/cli.py	(revision 41)
+++ stamper/cli.py	(revision 55)
@@ -21,3 +21,5 @@
     parser.add_argument('-i', '--import', action="store", dest="import_file",
                         help='Import stamps from the given file')
+    parser.add_argument('-p', '--push', action="store_true",
+                        help='Push stamps to a remote stamps collector server')
     return parser
