Skip to content

Latest commit

 

History

History
200 lines (148 loc) · 5.42 KB

README.md

File metadata and controls

200 lines (148 loc) · 5.42 KB

ketool

Development tools for Kompira Enterprise

oclif Version Downloads/week

Usage

$ npm install -g ketool
$ ketool COMMAND
running command...
$ ketool (--version)
ketool/0.1.1 linux-x64 node-v20.18.0
$ ketool --help [COMMAND]
USAGE
  $ ketool COMMAND
...

Commands

ketool help [COMMAND]

Display help for ketool.

USAGE
  $ ketool help [COMMAND...] [-n]

ARGUMENTS
  COMMAND...  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for ketool.

See code: @oclif/plugin-help

ketool ls [OBJECT]

list information about the OBJECTs.

USAGE
  $ ketool ls [OBJECT...] [-u <value>] [-k] [-t <value>] [-c <value>] [-l]

ARGUMENTS
  OBJECT...  file to read

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -l, --long             use a long listing format
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server

DESCRIPTION
  list information about the OBJECTs.

EXAMPLES
  $ ketool ls

See code: src/commands/ls.ts

ketool mkdir DIRECTORY

Create the directories, if they do not already exist.

USAGE
  $ ketool mkdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]

ARGUMENTS
  DIRECTORY...  path of the directory to be created

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -p, --parent           no error if existing, make parent directories as needed
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each created directory

DESCRIPTION
  Create the directories, if they do not already exist.

EXAMPLES
  $ ketool mkdir

See code: src/commands/mkdir.ts

ketool put SOURCE

put files or directories to Kompira server

USAGE
  $ ketool put SOURCE... [-u <value>] [-k] [-t <value>] [-c <value>] [-d <value>] [-o] [-r] [-v]

ARGUMENTS
  SOURCE...  source file or directory

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -d, --dest=<value>     specify destination object or directory (create if none exists)
  -k, --insecure         allow insecure SSL connection
  -o, --overwrite        overwrite an existing object
  -r, --recursive        put directories recursively
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          explain what is being down

DESCRIPTION
  put files or directories to Kompira server

EXAMPLES
  $ ketool put

See code: src/commands/put.ts

ketool rm OBJECT

Remove the directories, if they are empty.

USAGE
  $ ketool rm OBJECT... [-u <value>] [-k] [-t <value>] [-c <value>] [-f] [-r] [-v]

ARGUMENTS
  OBJECT...  path of the object to be removed

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -f, --force            ignore nonexistent objects and arguments
  -k, --insecure         allow insecure SSL connection
  -r, --recurcive        remove directories and their contents recursively
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each removed directory

DESCRIPTION
  Remove the directories, if they are empty.

EXAMPLES
  $ ketool rm

See code: src/commands/rm.ts

ketool rmdir DIRECTORY

Remove the directories, if they are empty.

USAGE
  $ ketool rmdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]

ARGUMENTS
  DIRECTORY...  path of the directory to be removed

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -p, --parent           remove DIRECTORY and its ancestors
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each removed directory

DESCRIPTION
  Remove the directories, if they are empty.

EXAMPLES
  $ ketool rmdir

See code: src/commands/rmdir.ts