1# FCF CLI
2
3## Usage
4
5### Validate file
6
7```
8fcf validate ./examples/fullconfig.fc
9```
10
11### .fcfcf file to JSON
12
13```
14fcf jsonify ./examples/fullconfig.fc
15```
16
17### .fc file to FCF
18
19*Mostly for testing purposes*
20
21```
22fcf parse ./examples/fullconfig.fc
23```
24
25### Parse tokens for FCF file
26
27```
28fcf tokenize ./examples/fullconfig.fc
29```
30
31### Run tests
32
33This command parses the files in ./tests and compares them to the _result files to see if they match.
34
35```
36fcf test
37```
38
39## Build
40
41```
42dotnet build
43```