From: Wolfgang Bangerth 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-Tag: v8.0.0~16419 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0f55c9bb360486f769766ee86bdfdd4ae1275bc;p=dealii.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; +} +