Forrest logo
back to the turbo tool

turbo:tldr:bc3b1

turbo: Generate a Dot graph of a specific task execution (the output file format can be controlled with the filename).
$ turbo run ${task_name} --graph=${filename}.${select}
try on your machine

This command is utilizing the "turbo" tool to execute a task specified by the variable "${task_name}".

The "--graph" flag is used to provide a graph file as input to the task. The "${filename}" variable represents the name of the graph file, while the "${select}" variable represents the file format or extension of the graph file.

The command will replace "${filename}.${select}" with the actual filename and file extension you want to use, creating a complete filename for the graph file.

For example, if the values of "${task_name}", "${filename}", and "${select}" are "task1", "example", and "txt" respectively, the command will be interpreted as:

turbo run task1 --graph=example.txt

This will execute the "task1" task, passing the "example.txt" graph file as input to it.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the turbo tool