mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 03:04:54 -05:00
Update mtk.py
This commit is contained in:
parent
798696990a
commit
236db70e9f
1 changed files with 3 additions and 3 deletions
6
mtk.py
6
mtk.py
|
@ -38,7 +38,7 @@ cmds = {
|
|||
"plstage": "Run stage2 payload via preloader mode (send_da)",
|
||||
"da": "Run da xflash/legacy special commands",
|
||||
"script": "Run multiple commands using text script",
|
||||
"multi": 'Run multiple commands using a comma-separated list (enclose list in quotes)'
|
||||
"multi": 'Run multiple commands using a semicolon-separated list (enclose list in quotes)'
|
||||
}
|
||||
|
||||
|
||||
|
@ -53,8 +53,8 @@ def main():
|
|||
'gettargetconfig, peek, stage, plstage, da, script\n')
|
||||
|
||||
parser_script = subparsers.add_parser("script", help="Run text script")
|
||||
parser_multi = subparsers.add_parser("multi", help='Run multiple commands using a comma-separated list (enclose list in quotes)')
|
||||
parser_multi.add_argument('commands', help='Comma-separated list of commands to run')
|
||||
parser_multi = subparsers.add_parser("multi", help='Run multiple commands using a semicolon-separatedlist (enclose list in quotes)')
|
||||
parser_multi.add_argument('commands', help='semicolon-separated list of commands to run')
|
||||
|
||||
|
||||
parser_printgpt = subparsers.add_parser("printgpt", help="Print GPT Table information")
|
||||
|
|
Loading…
Reference in a new issue