- 论坛徽章:
- 0
|
不知道为何外层加了while(<>) 循环? 我去掉了外层循环,另外一些修改看注释吧
- #!/usr/bin/perl
- use strict;
- use warnings;
- use LWP::Simple;
- print "Starting main program\n";
- my @childs;
- for ( my $count = 1; $count <= 10; $count++ ) {
- my $pid = fork();
- if ($pid) {
- # parent
- print "pid is $pid, parent $\n";
- push( @childs, $pid );
- }
- elsif ( $pid == 0 ) {
- # child
- get_number($count); #为何要传$_, 在child中,$_ 还没有初始化
- exit 0;
- }
- else {
- die "couldnt fork: $!\n";
- }
- }
- foreach (@childs) {
- my $tmp = waitpid( $_, 0 );
- print "done with pid $tmp\n";
- }
- print "End of main program\n";
- sub get_number {
- my ($snp) = @_;
- print "***$snp \n\n";
- my $url = "http://www.ncbi.nlm.nih.gov/projects/SNP/snp_gene.cgi?rs=$snp";
- $_ = get($url);
- if (/\"snp_id\"\s*:\s*(.*),\n/) {
- print "$snp\t$1\n";
- }
- }
复制代码 |
|