Index: bin/stamps
===================================================================
--- bin/stamps	(revision 32)
+++ bin/stamps	(revision 37)
@@ -23,4 +23,6 @@
     parser.add_argument('-d', '--delete', action="store", type=int,
                         help='Delete up to n recorded stamps')
+    parser.add_argument('-i', '--import', action="store", dest="import_file",
+                        help='Import stamps from the given file')
 
     args = parser.parse_args()
@@ -42,4 +44,6 @@
     elif args.graph:
         s.graph_stamps(args.customer, args.filter)
+    elif args.import_file:
+        s.import_stamps(args.import_file)
     else:
         s.show_stamps(args.customer, args.filter, args.verbose, args.sum)
