Help for this page

Select Code to Download


  1. or download this
    sub launch_chimera
    {
        my $pid = fork();
    ...
        return if $pid;
        exec(qw( chimera --send test.pdf ));
    }