Index: bin/stamps
===================================================================
--- bin/stamps	(revision 23)
+++ bin/stamps	(revision 28)
@@ -19,4 +19,6 @@
     parser.add_argument('-g', '--graph', action="store_true",
                         help='Generate a SVG graph')
+    parser.add_argument('-t', '--timeline', action="store_true",
+                        help='Show a timeline of recorded times')
 
     args = parser.parse_args()
@@ -24,4 +26,7 @@
     s = Stamper()
     s.load_stamps()
-    s.show_stamps(args.customer, args.filter, args.verbose, args.sum,
-        args.graph)
+    if args.timeline:
+        s.timeline()
+    else:
+        s.show_stamps(args.customer, args.filter, args.verbose, args.sum,
+                      args.graph)
