本当に戻ってこない場合は、ある種の無限ループに陥っているに違いありません。Perl デバッガーを使用して、コマンド ラインでスクリプトを実行してみてください。
~$ perl -d my_script.pl
CGI スクリプトもこの方法で読み取ることができ、コマンド ライン引数を KEY=VAL の形式で受け入れることに注意してください。
~$ perl -d my_cgi.cgi var=foo var2=bar bananas=delicious
「h」と入力すると、perl デバッガーが受け付けるコマンドのリストを表示しますが、最も重要なものは次のとおりです。
n: go to the next line
s: step into the next line (if it is a sub, otherwise is identical to 'n')
v: view the next few lines (can be used repeatedly)
c: continue to a line or subroutine
ある種の無限ループの問題があることがわかった場合は、バグとしてhttp://rt.cpan.org (具体的には、https: //rt.cpan.org/Public/Dist/Display. html?Name=Spreadsheet-ParseExcel )