console
$ cargo install ctp
In any file or even in the commands sections of your config file you can place {{__NAME__}} and/or {{__OUT__}}. Both of these will be replaced by their corresponding definitions that you pass in, hence dynamic.
{{__NAME__}} corresponds to the project name you passed into ctp
{{__OUT__}} corresponds to the project output directory you passed into ctp
(defaults to the project name)
See here for why this is useful.
Create ~/.ctp.toml
and populate with the following:
```toml [templates]
[commands-before]
[commands-after] ```
Next, add the absolute path to a language template under templates
toml
[templates]
c = "<path to c template>"
Finally, add whatever commands you would like to run like so:
```toml [commands-before] c = ["echo \"Creating project called {{NAME}} in directory {{OUT_}}\""]
[commands-after] c = ["gcc -o {{NAME}} {{NAME}}.c", "./{{NAME}}"] ```