Skip to content

Clarify Windows command line and $ #1391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions en/intro_to_command_line/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ You now should see a white or black window that is waiting for your commands.
<!--sec data-title="Prompt: OS X and Linux" data-id="OSX_Linux_prompt" data-collapse=true ces-->


If you're on Mac or Linux, you probably see `$`, like this:
If you're on Mac or Linux, you probably see a `$`, like this:

{% filename %}command-line{% endfilename %}
```
Expand All @@ -58,15 +58,18 @@ $
<!--sec data-title="Prompt: Windows" data-id="windows_prompt2" data-collapse=true ces-->


On Windows, it's a `>` sign, like this:
On Windows, 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.

<!--endsec-->

Each command will be prepended by this sign and one space, but you don't have to type it. Your computer will do it for you. :)
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.

Expand Down