Tabli - Options

Undraw Windows

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



Related HowTo
Undraw Windows
Learning Tabulify - Step 1 - Installation

To learn Tabulify, you need to install the Tabli command line tool. This pages will guide you through the installation steps. Tabulify relies on Java version 1.8 You should have therefore already...
Undraw Windows
Learning Tabulify - Step 9 - How to fill a data resource with generated data ?

Tabulify integrates natively a data generator. You can generate realistic production data and start working on your project right away. anonymize production data in your development environment because...

Task Runner