6 releases

0.2.4 Oct 18, 2024
0.2.3 Aug 15, 2024
0.2.2 Jul 22, 2024
0.2.1 Feb 21, 2023
0.1.0 May 15, 2022

#344 in Command line utilities

Download history 127/week @ 2024-07-22 5/week @ 2024-07-29 105/week @ 2024-08-12 1/week @ 2024-08-19 7/week @ 2024-09-23 3/week @ 2024-09-30 175/week @ 2024-10-14 19/week @ 2024-10-21 9/week @ 2024-11-04

203 downloads per month

MIT license

5KB

About

alpha-counter-cli is a command line utility using the alpha-counter library to provide an alphabetic counter as would be used for numbering appendices.

It provides the --kind option to create counters using upper and lower ASCII alphabets as well as any alphabet via the --alphabet option. Specify an alternate starting point via the --start option. Stop printing after 100 iterations, or define an alternate number via the --take option.

Examples

$ alpha-counter -V
alpha-counter 0.2.4
$ alpha-counter -h
Alphabetic Counter (A, B, C, ..., X, Y, Z, AA, AB, AC, ...)

Usage: alpha-counter [OPTIONS]

Options:
  -k, --kind <KIND>          Kind (upper, lower) [default: upper]
  -s, --start <START>        Start [default: 0]
  -t, --take <TAKE>          Take [default: 100]
  -a, --alphabet <ALPHABET>  Custom alphabet
  -h, --help                 Print help
  -V, --version              Print version
$ alpha-counter
A
B
C
...
CT
CU
CV
$ alpha-counter --kind lower
a
b
c
...
ct
cu
cv
$ alpha-counter --start 23 --take 6
X
Y
Z
AA
AB
AC
$ alpha-counter --alphabet abc --take 10
a
b
c
aa
ab
ac
ba
bb
bc
ca

Dependencies

~1.1–1.7MB
~32K SLoC