Table of Contents

About

An option is a property that set a value to a name.

An option is used to passed parameters to the command.

Syntax

Tabulify supports two option format:

  • a long where the full name of the option is given
  • and a short one where only 1 letter is given

Long format

The long option format start with -- followed by the option name.

Example: the option longOptionName will got the value value

tabli module command --longOptionName value

Short format

The short option format start with - followed by one letter.

tabli module command -l [value]

If the option is a flag, the value is true by default and is therefore not mandatory.

Example

Long format

tabli --help

Short format

tabli -h