From: wolf Date: Tue, 10 Jun 2003 18:07:13 +0000 (+0000) Subject: Add a script that squashes template args from the output of gprof to make things... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75e5366d59351517d0970c95b2aaaf60d8295351;p=dealii-svn.git 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 --- 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; +} +