0.0.1 • Published 3 years ago

clotion v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

clotion

Command line manager for notion

oclif Version Downloads/week License

Usage

$ npm install -g clotion
$ clotion COMMAND
running command...
$ clotion (-v|--version|version)
clotion/0.0.1 darwin-x64 node-v12.20.1
$ clotion --help [COMMAND]
USAGE
  $ clotion COMMAND
...

Commands

clotion db [FILE]

Manages database alias

USAGE
  $ clotion db [FILE]

OPTIONS
  -h, --help              show CLI help
  -n, --set=set           set new alias
  -u, --unset=unset
  -x, --extended          show extra columns
  --columns=columns       only show provided columns (comma-separated)
  --csv                   output is csv format [alias: --output=csv]
  --filter=filter         filter property by partial string matching, ex: name=foo
  --no-header             hide table header from output
  --no-truncate           do not truncate output to fit screen
  --output=csv|json|yaml  output in a more machine friendly format
  --sort=sort             property to sort by (prepend '-' for descending)

See code: src/commands/db.ts

clotion help [COMMAND]

display help for clotion

USAGE
  $ clotion help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

clotion jot [VALUE] [PRIORITY]

Create an entry in database

USAGE
  $ clotion jot [VALUE] [PRIORITY]

OPTIONS
  -d, --db=db              (required) DB alias to record entry to
  -h, --help               show CLI help
  -p, --priority=priority  priority of the task

EXAMPLE
  $ clotion jot --db <alias> value

See code: src/commands/jot.ts