Forrest logo
back to the turbo tool

turbo:tldr:9535c

turbo: Run a task without concurrency.
$ turbo run ${task_name} --concurrency=${1}
try on your machine

This command is used to run a task named "${task_name}" with a specified concurrency level.

Here's a breakdown of the command and its components:

  • "turbo run": This is the command to run a task using the Turbo CLI (Command-Line Interface). Turbo is a tool that enables developers to speed up their local development workflows.

  • "${task_name}": This is a placeholder for the actual name of the task you want to run. You need to replace "${task_name}" with the specific task name.

  • "--concurrency=${1}": This is an option for specifying the concurrency level of the task. The "${1}" placeholder represents the value passed as the first argument when executing the command. You need to replace it with an actual value.

Overall, this command runs the task with the specified name and sets the concurrency level based on the provided value. The actual values for "${task_name}" and "${1}" should be provided in order to execute the command correctly.

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