The Config directory will be created on launch, if needed.
The Template directory will also be created, inside the config directory
Simply place your files/directories inside the templates dir.
-l | list [-k/key] - List template names [ or key names ]
-n | name <value> - Override template name on copy
-k | key <$K & $V> - Requires a key, and value to be givenTo use the key/value substitution, simply add some keys to your config, then in your templates, you can use a 'key' like:
{{example}}# ~/.config/omake/templates/pointlessScript
echo "Here is my {{example}}"Then, when doing:
omake -k example spoon pointlessScriptWould become:
# ./pointlessScript
echo "Here is my spoon"