FCTool

Tool for creating files

Installation

  1. Install Cargo
  2. Run cargo install fctool

Usage

fctool {input file}

Format

Examine this example input:
Warning: all files referenced will be cleared ```

This is a comment

[a, "b"] This will be printed to files 'a' and 'b'

[a, b]

The above line is escaped and printed to files 'a' and 'b'

without the '\' (the first '\' is always ignored)

[c] This will be printed to file 'c'

[/] The above cancels the previous rule This will again be printed to files 'a', and 'b'

[+c -b] This will be printed to files 'a' and 'c'

$[some_content]

The above line copies contents of file some_content to files 'a' and 'c'

```