.Ar maxprocs
invocations of
.Ar utility
at once.
at once. If
is negative or 0,
.Nm
will run as many processes as possible at a time.
.It Fl p
Echo each command to be executed and ask the user whether it should be
executed.
oflag = 1;
break;
case 'P':
if ((maxprocs = atoi(optarg)) <= 0)
maxprocs = strtol(optarg, &endptr, 10);
errx(1, "max. processes must be >0");
if (*endptr != '\0')
errx(1, "max. processes must be a number");
if (maxprocs < 1)
maxprocs = nargs;
case 'p':
pflag = 1;