Perl
Troubleshooting Perl scripts
Discover a concise four-step guide to troubleshoot Perl scripts effectively, with links to related topics.
This article describes several ways you can troubleshoot your Perl scripts.
When there is an error, the Perl interpreter outputs detailed information about the type of error, and often the exact line number in the script file where the error occurred.
If you need even more detailed information or control over the script’s execution, you can run the script in the Perl command-line debugger. To do this, type the following command:
The Perl debugger has many features. For more information about how to use the Perl debugger, please visit http://perldoc.perl.org/perldebtut.html.