大约有 2,831 项符合查询结果(耗时:0.0046秒) [XML]
How can I troubleshoot my Perl CGI script?
... debugger; we can use the command line tool netcat (nc, saw that here: Perl如何remote debug?). So, first run the netcat listener in one terminal - where it will block and wait for connections on port 7234 (which will be our debug port):
$ nc -l 7234
Then, we'd want perl to start in debug mode w...