what's the debug command for perl scripts

Hi,

Can you please let me know if there's any debug command for perl scripts

like

set -x for shell scripts

It's not really a command ... think of it like gdb, the Perl debugger:

http://perldoc.perl.org/perldebug.html

Use -d option with perl:
perl -d <myprogram>