Update of /cvsroot/perl-flat/blokhead/dev-scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12475
Added Files:
profile.sh
Log Message:
added wrapper script for profiler - usage: sh profile.sh profilethis.pl arg1 agr2 argN
--- NEW FILE: profile.sh ---
#!/bin/sh
# profile FLAT code
# Usage:
#
# ./profile.sh <dev-script-name> [arg1 arg2 ... argN]
# run with Dprof as debugger
perl -d:DProf $@
# process tmon.out file
dprofpp
|