天行健,君子以自强不息!
发布时间:2013-10-03 23:13:03
fork()函数: 作用:进程复制函数。 用法:$pid=fork(); 讲解: 无参数;当本进程为父进程时返回值为子进程的PID值,当进程为子进程时返回值为0。 实例: #!usr/bin/perl -w $pid=fork(); #复制进程,并把返.........【阅读全文】
发布时间:2013-10-01 11:03:46
In this article, let us discuss how to write Perl socket programming using the inbuilt socket modules in Perl.Perl socket modules provides an object interface that makes it easier to create and use TCP / UPD sockets.本文讨论使用Perl内建的socket模块来实现Perl socket编程This article covers the fol.........【阅读全文】