Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~53 People Reached
Favorite Forums
Favorite Tags
perl x 1
Member Avatar for LH2007

hi everybody!I'm newbie.I have a exercise about perl like this: Creating 2 process P1(parent) P2 (child) P1 get characters from keyboard If press Ctrl-c P1 send a signal terminate P2 ...................................... My ideal is : [Code] ( perl ) $handle=IO::Socket::INET->(proto=>"tcp", PeerAddr=>$host, PeerPort=>$port) $handle->autoflush(1); die 'can't fork:$!' unless defined($pid=fork()); if($pid) { …

0
53