Starting the debugger
- Invoking the debugger standalone:
perl -d -e 0
- Loading a program into the debugger:
perl -d broken_program.pl
- You can also use the -d switch in the shebang path of your program, but I'm not going to mention that
#!/usr/bin/perl -wd