Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitlinnewson committed Sep 7, 2023
1 parent 897dbf8 commit 6935a7a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,3 @@ Danielle Kane (Ed.), Anna Oates (Ed.), John Wright (Ed.), Nilani Ganeshwaran (Ed
## Checking and Previewing the Lesson

To check and preview a lesson locally, see [the lesson infrastructure documentation](https://carpentries.github.io/sandpaper-docs/).


15 changes: 7 additions & 8 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@ site: sandpaper::sandpaper_site
---

This Library Carpentry lesson introduces librarians to the Unix Shell.
At the conclusion of the lesson you will: describe the basics of the Unix shell;
explain why and how to use the command line;
use shell commands to work with directories and files;
use shell commands to find and manipulate data.
At the conclusion of the lesson you will be able to:

- describe the basics of the Unix shell;
- explain why and how to use the command line;
- use shell commands to work with directories and files;
- use shell commands to find and manipulate data.

:::::::::::::::::::::::::::::::::::::::::: prereq

## Prerequisites

To complete this lesson, you will need a Unix-like shell environment -see [Setup](learners/setup.md). You will also need to download the file **[shell-lesson.zip](https://raw.githubusercontent.com/librarycarpentry/lc-shell/gh-pages/data/shell-lesson.zip)** from GitHub to your *desktop* and extract it there (once you have unzipped/extracted the file, you should end up with a folder called "shell-lesson").

To complete this lesson, you will need a Unix-like shell environment (see [Setup](learners/setup.md)). You will also need to download the file **[shell-lesson.zip](https://raw.githubusercontent.com/librarycarpentry/lc-shell/gh-pages/data/shell-lesson.zip)** from GitHub to your *desktop* and extract it there (once you have unzipped/extracted the file, you should end up with a folder called "shell-lesson").

::::::::::::::::::::::::::::::::::::::::::::::::::


21 changes: 11 additions & 10 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Windows users will need to install Git Bash to provide a Unix-like environment.
- Double click the `.exe` file to run the installer (for example, `Git-2.42.0.2-64-bit.exe`) using the default settings.
- Once installed, open the shell by selecting Git Bash from the start menu (in the Git folder).

There are also some more advanced solutions available for running Bash commands on Windows. A Bash shell command-line tool is available for Windows 10, which you can use if you enable the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10). You can also run Bash commands on a remote computer or server that already has a Unix Shell from your Windows machine. This can be done through a Secure Shell (SSH) client. One client available for free for Windows is [PuTTY](https://www.putty.org/).
There are also some more advanced solutions available for running Bash commands on Windows. A Bash shell command-line tool is available for Windows 10, which you can use if you enable the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10). You can also run Bash commands on a remote computer or server that already has a Unix Shell from your Windows machine. This can be done through a Secure Shell (SSH) client. One client available for free for Windows is [PuTTY](https://www.putty.org/).

If you encounter issues, the Carpentries has a [Configuration Problems and Solutions wiki page](https://github.com/carpentries/workshop-template/wiki/Configuration-Problems-and-Solutions) that may help.

Expand All @@ -39,17 +39,18 @@ You need to download some files to follow this lesson:
2. Unzip/extract the file (ask your instructor if you need help with this step). You should end up with a new folder called `shell-lesson` on your Desktop.
3. Open the terminal and type `ls` followed by the <kbd>enter</kbd> key.

```bash
$ ls
```
```bash
$ ls
```

You should see a list of files and folders in your current directory.
4\. Then type:
You should see a list of files and folders in your current directory.

```bash
$ pwd
```
4. Then type:

This command will show you where you are in your file system, which should now be your home directory. In the lesson, you will find out more about the commands `ls`, `pwd` and how to work with the data in `shell-lesson` folder.
```bash
$ pwd
```

This command will show you where you are in your file system, which should now be your home directory. In the lesson, you will find out more about the commands `ls`, `pwd` and how to work with the data in `shell-lesson` folder.

::::::::::::::::::::::::::::::::::::::::::::::::::

0 comments on commit 6935a7a

Please sign in to comment.