Link Search Menu Expand Document

Setup

Getting the Data

The data we will use is taken from the Software Carpentries. To obtain it, download the file here and unzip it. You should have a new folder on your desktop called shell-lesson-data.

Install Shell Software

If you do not already have the shell software installed, you will need to download and install it. (See below)

Opening Shell

After installing the software

Open a terminal. If you’re not sure how to open a terminal on your operating system, see the instructions below. In the terminal type cd then press the Enter or Return key. This step will make sure you start with your home folder as your working directory. In the lesson, you will find out how to access the data files in this folder.

Installing Bash

If you have a Mac or Linux operating system then you should have access to Bash through your terminal or command prompt.

If you use

Microsoft
Mac
Linux

Microsoft

  1. Download the Git for Windows installer.
  2. Run the installer and follow the steps below:
    1. Click on “Next” four times (two times if you’ve previously installed Git). You don’t need to change anything in the Information, location, components, and start menu screens.

    2. From the dropdown menu, “Choosing the default editor used by Git”, select “Use the Nano editor by default” (NOTE: you will need to scroll up to find it) and click on “Next”.

    3. On the page that says “Adjusting the name of the initial branch in new repositories”, ensure that “Let Git decide” is selected. This will ensure the highest level of compatibility for our lessons.

    4. Ensure that “Git from the command line and also from 3rd-party software” is selected and click on “Next”. (If you don’t do this Git Bash will not work properly, requiring you to remove the Git Bash installation, re-run the installer and to select the “Git from the command line and also from 3rd-party software” option.)

    5. Select “Use bundled OpenSSH”.

    6. Ensure that “Use the native Windows Secure Channel Library” is selected and click on “Next”.

    7. Ensure that “Checkout Windows-style, commit Unix-style line endings” is selected and click on “Next”.

    8. Ensure that “Use Windows’ default console window” is selected and click on “Next”.

    9. Ensure that “Default (fast-forward or merge) is selected and click “Next”

    10. Ensure that “Git Credential Manager” is selected and click on “Next”.

    11. Ensure that “Enable file system caching” is selected and click on “Next”.

    12. Click on “Install”.

    13. Click on “Finish” or “Next”.

  3. If your “HOME” environment variable is not set (or you don’t know what this is):
    1. Open command prompt (Open Start Menu then type cmd and press Enter)

    2. Type the following line into the command prompt window exactly as shown: setx HOME "%USERPROFILE%"

    3. Press Enter, you should see SUCCESS: Specified value was saved.

    4. Quit command prompt by typing exit then pressing Enter

This will provide you with both Git and Bash in the Git Bash program.

Video Tutorial

Mac

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 /Applications/Utilities). See the Git installation video tutorial for an example on how to open the Terminal. You may want to keep Terminal in your dock for this workshop.

To see if your default shell is Bash type echo $SHELL in Terminal and press the Return key. If the message printed does not end with ‘/bash’ then your default is something else and you can run Bash by typing bash

If you want to change your default shell, see this Apple Support article and follow the instructions on “How to change your default shell”.

Video Tutorial

Linux

The default shell is usually Bash and there is usually no need to install anything.

To see if your default shell is Bash type echo $SHELL in a terminal and press the Enter key. If the message printed does not end with ‘/bash’ then your default is something else and you can run Bash by typing bash.

This course material was created from the The Unix Shell curriculum developed by The Software Carpentry Foundation of The Carpentries licensed under CC-BY 4.0