GDB Commands

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2024 Jun 3 5:16
Editor
Edited
Edited
2024 Jun 13 5:27
Refs
Refs
  • p print variable symbol
  • b break main
  • r run 처음부터
  • c continue 이어서
  • x examine 메모리 임의 값 관찰
    • i instruction
    • s string
    • x hex
    • d decimal
    • u unsigned
    • t 2진수
    • f 부동소수점
  • i info
     
     
    • si step into 함수 내부로 진입
    • ni next instruction 함수 내부로 진입 X
    • finish 함수의 끝까지 실행
    • k kill
    • pd pdisas
     
     
     
     

    Recommendations