Forrest logo
back to the exercism tool

exercism:tldr:c40da

exercism: Submit an exercise.
$ exercism submit ${filename}
try on your machine

The command "exercism submit ${filename}" is used to submit a specific file to the Exercism platform.

Here's a breakdown of each component of the command:

  • "exercism" is the executable command for the Exercism CLI (Command-Line Interface). It is a program that allows you to interact with the Exercism platform from your terminal.

  • "submit" is a subcommand within the Exercism CLI. It is used to submit solutions for exercises on the Exercism platform.

  • "${filename}" is a placeholder representing the name of the file you want to submit. You need to replace "${filename}" with the actual name of the file you want to submit. For example, if you want to submit a file named "my_solution.py", you would replace "${filename}" with "my_solution.py".

When you execute the command "exercism submit ${filename}", the Exercism CLI will package the specified file and submit it as your solution for the corresponding exercise on the Exercism platform. This allows you to track your progress and receive feedback from mentors or other members of the Exercism community.

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 exercism tool