GWHAYWOOD has asked for the wisdom of the Perl Monks concerning the following question:
What am I missing? Perl::Critic has certainly found examples of dubious technique on my part, but it also seems to have a few blind spots. What do the wise folks here think of Perl::Critic generally?$ cat test.pl: #!/usr/bin/perl use strict; use warnings; use POSIX qw( :unistd_h :sys_wait_h setsid WNOHANG ); POSIX::setsid() or die 'failed'; $ perlcritic --stern ./test.pl Subroutine "setsid" not exported by "POSIX" at line...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl::Critic and the POSIX module.
by Fletch (Bishop) on Jan 26, 2022 at 16:10 UTC | |
|
Re: Perl::Critic and the POSIX module.
by hippo (Archbishop) on Jan 26, 2022 at 16:30 UTC | |
|
Re: Perl::Critic and the POSIX module.
by cavac (Prior) on Jan 26, 2022 at 18:10 UTC | |
by syphilis (Archbishop) on Jan 27, 2022 at 01:58 UTC | |
|
Re: Perl::Critic and the POSIX module.
by GWHAYWOOD (Sexton) on Jan 27, 2022 at 09:56 UTC | |
by Anonymous Monk on Jan 27, 2022 at 15:03 UTC |