ports/devel/p5-Proc-Simple/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

16 lines
550 B
Text

The Proc::Simple package provides objects that model real-
life processes from a user's point of view. A new process
object is created by
$myproc = Proc::Simple->new();
Either shell-like command lines or references to perl
subroutines can be specified for launching a process in
background. A 10-second sleep process, for example, can
be started via the shell as
$myproc->start("sleep 10");
or, as a perl subroutine, with
$myproc->start(sub { sleep(10); });