From f0f55c9bb360486f769766ee86bdfdd4ae1275bc Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 10 Jun 2003 18:07:13 +0000 Subject: [PATCH] Add a script that squashes template args from the output of gprof to make things a little more readable. git-svn-id: https://svn.dealii.org/trunk@7790 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/squash_gmonout.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 deal.II/common/scripts/squash_gmonout.pl diff --git a/deal.II/common/scripts/squash_gmonout.pl b/deal.II/common/scripts/squash_gmonout.pl new file mode 100755 index 0000000000..3e9b725eac --- /dev/null +++ b/deal.II/common/scripts/squash_gmonout.pl @@ -0,0 +1,8 @@ +#!/usr/bin/perl + +while(<>) +{ + 1 while s/<[^<>]*>//g; + print; +} + -- 2.39.5