Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.45 KB

SUMMARY.md

File metadata and controls

37 lines (26 loc) · 1.45 KB

LESSON SUMMARY

This is a summary of the commands learned in each of the lessons in this tutorial.

  • perl -d - start debugging
  • n - step through the script ('next') or (ENTER after first n)
  • q - quit the debugger ('quit')
  • R - start the script from the beginning ('restart')
  • x - examine a variable
  • p - print the value of a variable
  • s - step into a function
  • r - return from a function
  • c - continue execution
  • l [line|sub] - list source code
  • v [line] - view around line
  • . - list current line
  • f [file] - view source in a file
  • b - set a breakpoint (current line)
  • b [sub] - set a breakpoint (specified function)
  • b [line] - set a breakpoint (specified line)
  • B [line] - clear a breakpoint for line
  • B * - clear all breakpoints
  • L - list break/watch/actions