- or download this
#!/usr/bin/perl
#prompts for an string to evalute
...
close($rd);
close($wr);
- or download this
#!/usr/bin/perl
use warnings;
...
waitpid($pid, 1);
# It is important to waitpid on your child process,
# otherwise zombies could be created.
- or download this
#!/usr/bin/perl
use warnings;
...
waitpid($pid, 1);
# It is important to waitpid on your child process,
# otherwise zombies could be created.