Skip to content
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

Updated macOS instructions for 10.15 (Catalina) #632

Merged
merged 4 commits into from
Dec 19, 2019
Merged
Changes from 2 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
27 changes: 18 additions & 9 deletions _includes/swc/setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,23 +87,32 @@ <h3>The Bash Shell</h3>
</article>
<article role="tabpanel" class="tab-pane active" id="shell-macos">
<p>
The default shell in all versions of macOS is Bash, so no
need to install anything. You access Bash from the Terminal
(found in
<code>/Applications/Utilities</code>).
The default shell in some versions of macOS is Bash, and
Bash is available in all versions, so no need to install anything.
You access Bash from the Terminal (found in
<code>/Applications/Utilities</code>).
See the Git installation <a href="https://www.youtube.com/watch?v=9LQhwETCdwY ">video tutorial</a>
for an example on how to open the Terminal.
You may want to keep
Terminal in your dock for this workshop.
You may want to keep Terminal in your dock for this workshop.
</p>
<p>
To see if your default shell is bash type <code>echo $SHELL</code> in
LHurst-UoB marked this conversation as resolved.
Show resolved Hide resolved
Terminal and press the enter/return key. If the message printed does
not end '/bash' then your default is something else and you can run
LHurst-UoB marked this conversation as resolved.
Show resolved Hide resolved
Bash by typing <code>bash</code>.
</p>
</article>
<article role="tabpanel" class="tab-pane active" id="shell-linux">
<p>
The default shell is usually Bash, but if your
machine is set up differently you can run it by opening a
terminal and typing <code>bash</code>. There is no need to
The default shell is usually Bash and there is usually no need to
install anything.
</p>
<p>
To see if your default shell is bash type <code>echo $SHELL</code> in
a terminal and press the enter/return key. If the message printed does
not end '/bash' then your default is something else and you can run
Bash by typing <code>bash</code>.
</p>
</article>
</div>
</div>
Expand Down