Help & Apropos

LLDB에는 수많은 명령어와 해당하는 Subcommand, Option들이 존재합니다. 기억이 가물가물 하거나 필요한 기능이 있는지 확인할 때는, 도움 받을만한 Command를 유용하게 사용할 수 있습니다.

  • Help

    해당 문법으로 사용가능한 Subcommand, Option 리스트나 사용법을 보여주는 유용한 명령어입니다.

    # LLDB에서 제공하는 Command가 궁금하다면,
    (lldb) help
    
    # 특정 Command의 Subcommand나, Option이 궁금하다면,
    (lldb) help breakpoint
    (lldb) help breakpoint set
    
  • Apropos

    원하는 기능의 명령어가 있는지 관련 키워드를 통해 알아볼 수있는 명령어입니다.

    # reference count를 체크할 수 있는 명령어가 있을까? 궁금하다면,
    (lldb) apropos "reference count"
    # 결과
    # The following commands may relate to 'reference count':
    #    refcount -- Inspect the reference count data for a Swift object