Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/setup_macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ $ brew install wget git tree
```

## Home Directory
Run `cd ~`. This will take you to your Ubuntu home directory. Running `pwd` afterward confirms the location. (Your username will be different.)
Run `cd ~`. This will take you to your home directory. Running `pwd` afterward confirms the location. (Your username will be different.)

```console
$ cd ~
Expand Down
2 changes: 1 addition & 1 deletion docs/setup_vscode_macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ $ mkdir -p ~/eecs280/p1-stats
$ cd ~/eecs280/p1-stats
```

This `mkdir -p` command creates a new `p1-stats` folder within an `eecs280` folder (creating that too, if it doesn't exist), within your Ubuntu home directory (`~`). The `cd` command changes your working directory to the new `p1-stats` directory.
This `mkdir -p` command creates a new `p1-stats` folder within an `eecs280` folder (creating that too, if it doesn't exist), within your home directory (`~`). The `cd` command changes your working directory to the new `p1-stats` directory.

<div class="primer-spec-callout warning" markdown="1">
**Pitfall:** Avoid paths that contain spaces. Spaces causes problems with some command line tools.
Expand Down
Loading