Table of Contents

Tabli - Options

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:

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