Perl 使用管道實現進程間的通訊

fork()函數:  做用:進程複製函數。  用法:$pid=fork();     講解:  無參數; 當本進程爲父進程時返回值爲子進程的PID值,當進程爲子進程時返回值爲0。  實例:  #!usr/bin/perl -w  $pid=fork();  #複製進程,並把返回值附入$pid  die "Error:$!\n" unless defined $pid;  #制定程序的錯誤機制,此步
相關文章
相關標籤/搜索