notime.pl 619 B

12345678910111213141516171819202122232425
  1. #! /usr/bin/perl
  2. ## vim:set ts=4 sw=4 et: -*- coding: utf-8 -*-
  3. ##
  4. ##---------------------------------------------------------------------------##
  5. ##
  6. ## Author:
  7. ## Markus F.X.J. Oberhumer <markus@oberhumer.com>
  8. ##
  9. ## Description:
  10. ## Remove timing values from a table created by table.pl
  11. ##
  12. ## Copyright (C) 1996-2015 Markus Franz Xaver Johannes Oberhumer
  13. ##
  14. ##---------------------------------------------------------------------------##
  15. while (<>) {
  16. if (substr($_,56) =~ /^\s+[\d\.]+\s+[\d\.]+\s+\|\s*\n$/) {
  17. substr($_,56) = " 0.000 0.000 |\n";
  18. }
  19. print;
  20. }
  21. exit(0);