|
1 |
| -Usage: |
2 |
| - totp (help | h | ?) |
3 |
| - totp version |
4 |
| - totp (list | ls) |
5 |
| - totp (lsattr | cat) <index> |
6 |
| - totp (add | mk | new) <name> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-d <digits>] [-l <duration>] [-u] [-b <feature>]... |
7 |
| - totp (update) <index> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-n <name>] [-d <digits>] [-l <duration>] [-u] [-s] [-b <feature>]... |
8 |
| - totp (delete | rm) <index> [-f] |
9 |
| - totp (move | mv) <index> <new_index> |
10 |
| - totp pin (set | remove) [-c <slot>] |
11 |
| - totp notify [<notification>...] |
12 |
| - totp (timezone | tz) [<timezone>] |
13 |
| - totp reset |
14 |
| - totp automation [-k <layout>] [-w <delay>] [<automation>...] |
15 |
| - totp export |
16 |
| -
|
17 |
| -Commands: |
18 |
| - help, h, ? Show command usage help |
19 |
| - version Get application version |
20 |
| - list, ls List all available tokens |
21 |
| - lsattr, cat Displays token details |
22 |
| - add, mk, new Add new token |
23 |
| - update Update existing token |
24 |
| - delete, rm Delete existing token |
25 |
| - move, mv Move token |
26 |
| - pin Set\change\remove PIN |
27 |
| - notify Get or set notification method |
28 |
| - timezone, tz Get or set current timezone |
29 |
| - reset Reset application to default settings |
30 |
| - automation Get or set automation settings |
31 |
| - export Exports and prints all the tokens into URI-list format |
32 |
| -
|
33 |
| -Arguments: |
34 |
| - name Token name |
35 |
| - index Token index in the list |
36 |
| - new_index New token index in the list |
37 |
| - notification Notification method to be set. Must be one of: none, sound, vibro |
38 |
| - timezone Timezone offset in hours to be set |
39 |
| - automation Automation method to be set. Must be one of: none, usb, bt |
40 |
| -
|
41 |
| -Options: |
42 |
| - -t <type> Token type. Must be one of: totp, hotp [default: totp] |
43 |
| - -i <counter> Token initial counter. Applicable for HOTP tokens only. Must be positive integer number [default: 0] |
44 |
| - -a <algo> Token hashing algorithm. Must be one of: sha1, sha256, sha512, steam [default: sha1] |
45 |
| - -d <digits> Token digits count. Must be one of: 5, 6, 8 [default: 6] |
46 |
| - -e <encoding> Token secret encoding, one of base32, base64 [default: base32] |
47 |
| - -l <duration> Token lifetime duration in seconds. Applicable for TOTP tokens only. Must be between: 15 and 255 [default: 30] |
48 |
| - -u Show console user input as-is without masking |
49 |
| - -b <feature> Token automation features to be enabled. Must be one of: none, enter, tab [default: none] |
50 |
| - # none - No features |
51 |
| - # enter - Type <Enter> key at the end of token input automation |
52 |
| - # tab - Type <Tab> key at the end of token input automation |
53 |
| - # slower - Type slower |
54 |
| - -n <name> Token name |
55 |
| - -s Update token secret |
56 |
| - -f Force command to do not ask user for interactive confirmation |
57 |
| - -c <slot> New crypto key slot. Must be between 12 and 100 |
58 |
| - -k <layout> Automation keyboard layout. Must be one of: QWERTY, AZERTY, QWERTZ, Czech, Dvorak, Hungarian, Slovak |
59 |
| - -w <delay> Automation initial delay in seconds. Must be positive float value [default: 0.5] |
| 1 | +Usage: |
| 2 | + totp (help | h | ?) |
| 3 | + totp version |
| 4 | + totp (list | ls) |
| 5 | + totp (lsattr | cat) <index> |
| 6 | + totp (add | mk | new) <name> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-d <digits>] [-l <duration>] [-u] [-b <feature>]... |
| 7 | + totp (update) <index> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-n <name>] [-d <digits>] [-l <duration>] [-u] [-s] [-b <feature>]... |
| 8 | + totp (delete | rm) <index> [-f] |
| 9 | + totp (move | mv) <index> <new_index> |
| 10 | + totp pin (set | remove) [-c <slot>] |
| 11 | + totp notify [<notification>...] |
| 12 | + totp (timezone | tz) [<timezone>] |
| 13 | + totp reset |
| 14 | + totp automation [-k <layout>] [-w <delay>] [<automation>...] |
| 15 | + totp export |
| 16 | + |
| 17 | +Commands: |
| 18 | + help, h, ? Show command usage help |
| 19 | + version Get application version |
| 20 | + list, ls List all available tokens |
| 21 | + lsattr, cat Displays token details |
| 22 | + add, mk, new Add new token |
| 23 | + update Update existing token |
| 24 | + delete, rm Delete existing token |
| 25 | + move, mv Move token |
| 26 | + pin Set\change\remove PIN |
| 27 | + notify Get or set notification method |
| 28 | + timezone, tz Get or set current timezone |
| 29 | + reset Reset application to default settings |
| 30 | + automation Get or set automation settings |
| 31 | + export Exports and prints all the tokens into URI-list format |
| 32 | + |
| 33 | +Arguments: |
| 34 | + name Token name |
| 35 | + index Token index in the list |
| 36 | + new_index New token index in the list |
| 37 | + notification Notification method to be set. Must be one of: none, sound, vibro |
| 38 | + timezone Timezone offset in hours to be set |
| 39 | + automation Automation method to be set. Must be one of: none, usb, bt |
| 40 | + |
| 41 | +Options: |
| 42 | + -t <type> Token type. Must be one of: totp, hotp [default: totp] |
| 43 | + -i <counter> Token initial counter. Applicable for HOTP tokens only. Must be positive integer number [default: 0] |
| 44 | + -a <algo> Token hashing algorithm. Must be one of: sha1, sha256, sha512, steam [default: sha1] |
| 45 | + -d <digits> Token digits count. Must be one of: 5, 6, 8 [default: 6] |
| 46 | + -e <encoding> Token secret encoding, one of base32, base64 [default: base32] |
| 47 | + -l <duration> Token lifetime duration in seconds. Applicable for TOTP tokens only. Must be between: 15 and 255 [default: 30] |
| 48 | + -u Show console user input as-is without masking |
| 49 | + -b <feature> Token automation features to be enabled. Must be one of: none, enter, tab [default: none] |
| 50 | + # none - No features |
| 51 | + # enter - Type <Enter> key at the end of token input automation |
| 52 | + # tab - Type <Tab> key at the end of token input automation |
| 53 | + # slower - Type slower |
| 54 | + -n <name> Token name |
| 55 | + -s Update token secret |
| 56 | + -f Force command to do not ask user for interactive confirmation |
| 57 | + -c <slot> New crypto key slot. Must be between 12 and 100 |
| 58 | + -k <layout> Automation keyboard layout. Must be one of: QWERTY, AZERTY, QWERTZ, Czech, Dvorak, Hungarian, Slovak |
| 59 | + -w <delay> Automation initial delay in seconds. Must be positive float value [default: 0.5] |
0 commit comments