Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > d2e2664df18d2471e3adc441ef32b114 > files > 20

perl-GraphViz-2.240.0-3.mga7.noarch.rpm

#!/usr/bin/perl -w
#
# This script illustrates how Devel::GraphVizProf could be used

use strict;
use Config;
use IPC::Run qw(run);

my $perl = $Config{'perlpath'};

my($in, $out, $err);
run["$perl -I../lib -d:GraphVizProf primes_aux.pl > primes.dot; dot -Tpng primes.dot > primes.png"], \$in, \$out, \$err;