An option is a property that set a value to a name.
An option is used to passed parameters to the command.
Tabulify supports two option format:
The long option format start with -- followed by the option name.
Example: the option longOptionName will got the value value
tabul module command --longOptionName value
The short option format start with - followed by one letter.
tabul module command -l [value]
If the option is a flag, the value is true by default and is therefore not mandatory.
tabul --help
tabul -h