testapp.command.help

Attributes

TESTAPP_HELP

Classes

HelpCommand

Help 클래스는 사용 가능한 명령어와 옵션을 출력하는 명령어를 구현합니다.

Module Contents

testapp.command.help.TESTAPP_HELP = Multiline-String[source]
Show Value
"""
Usage:
  <command> [options]

Commands:
  write             SSD 데이터 쓰기
  read              SSD 데이터 읽기
  exit              TestShellApplication 종료
  help              Help 보기
  fullwrite         SSD 데이터를 특정 값으로 일괄 쓰기
  fullread          SSD 데이터 전체 읽기
  erase             SSD 데이터 지우기 (LBA ~ LBA + SIZE)
  erase_range       SSD 데이터 지우기 (Start LBA ~ End LBA)
  flush             Command Buffer에 있는 모든 명령어들을 수행하여 Buffer를 비움
  cls               Clear Screen
"""
class testapp.command.help.HelpCommand[source]

Bases: testapp.command.__interface.CommandInterface

Help 클래스는 사용 가능한 명령어와 옵션을 출력하는 명령어를 구현합니다.

required_args_cnt: int = 0[source]
run()[source]

사용 가능한 명령어와 옵션을 출력합니다.

static is_valid_args(*args) bool[source]

주어진 인자가 유효한지 확인합니다.