diff --git a/en/intro_to_command_line/prompt.md b/en/intro_to_command_line/prompt.md index 8c0c2ca7aac..d1098b1c7fb 100644 --- a/en/intro_to_command_line/prompt.md +++ b/en/intro_to_command_line/prompt.md @@ -1,32 +1,43 @@ - + + +On Windows, you probably see a `>`, like this: + +{% filename %}command-line{% endfilename %} +``` +> +``` + -If you're on Mac or Linux, you probably see a `$`, like this: + +If you're on Mac, you probably see a `%`, like this: {% filename %}command-line{% endfilename %} ``` -$ +% ``` - + -On Windows, you probably see a `>`, like this: +If you're on Linux, you probably see a `$`, like this: {% filename %}command-line{% endfilename %} ``` -> +$ ``` -Take a look at the Linux section just above now -- you'll see something more like that when you get to PythonAnywhere later in the tutorial. - -Each command will be prepended by a `$` or `>` and one space, but you should not type it. Your computer will do it for you. :) -> Just a small note: in your case there may be something like `C:\Users\ola>` or `Olas-MacBook-Air:~ ola$` before the prompt sign, and this is 100% OK. +> Just a small note: in your case there may be something like +> `C:\Users\ola>` +> or `Olas-MacBook-Air %` +> or `ola@mylaptop:$` +> before the prompt sign, and this is 100% OK. -The part up to and including the `$` or the `>` is called the *command line prompt*, or *prompt* for short. It prompts you to input something there. +The part up to and including the `$`, the `>` or the `%` is called the *command line prompt*, or *prompt* for short. It prompts you to input something there. -In the tutorial, when we want you to type in a command, we will include the `$` or `>`, and occasionally more to the left. Ignore the left part and only type in the command, which starts after the prompt. +In the tutorial, when we want you to type in a command, we will include the prompt, `%` or `$` or `>`, and occasionally more, to the left. +Ignore the left part and only type in the command, which starts after the prompt.