sub launch_chimera { my $pid = fork(); die "Unable to fork\n" unless defined $pid; return if $pid; exec(qw( chimera --send test.pdf )); }