Index: bin/stamps
===================================================================
--- bin/stamps	(revision 30)
+++ bin/stamps	(revision 32)
@@ -21,4 +21,6 @@
     parser.add_argument('-t', '--timeline', action="store_true",
                         help='Show a timeline of recorded times')
+    parser.add_argument('-d', '--delete', action="store", type=int,
+                        help='Delete up to n recorded stamps')
 
     args = parser.parse_args()
@@ -36,4 +38,6 @@
     if args.timeline:
         s.timeline()
+    elif args.delete:
+        s.remove_stamps(args.delete)
     elif args.graph:
         s.graph_stamps(args.customer, args.filter)
