Skip to content

Commit 3284ca1

Browse files
Merge pull request #252 from LibraryCarpentry/closed-pre-wb
Changes from pre-workbench
2 parents 4713c8f + 38fa7b6 commit 3284ca1

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

episodes/02-navigating-the-filesystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ drwx------+ 3 riley staff 102 Jul 16 11:30 Pictures
8181
drwxr-xr-x+ 5 riley staff 170 Jul 16 11:30 Public
8282
```
8383

84-
In everyday usage we are more used to units of measurement like kilobytes, megabytes, and gigabytes.
85-
Luckily, there's another flag `-h` that when used with the -l option, use unit suffixes:
84+
In everyday usage we are more accustomed to units of measurement like kilobytes, megabytes, and gigabytes.
85+
Luckily, there's another flag `-h` that when used with the -l option, prints unit suffixes:
8686
Byte, Kilobyte, Megabyte, Gigabyte, Terabyte and Petabyte in order to reduce the
87-
number of digits to three or less using base 2 for sizes.
87+
number of digits to three or fewer using base 2 for sizes.
8888

8989
Now `ls -h` won't work on its own. When we want to combine two flags,
9090
we can just run them together. So, by typing `ls -lh` and pressing

episodes/03-working-with-files-and-folders.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ documents (Word or OpenOffice), browsing the web, editing images, etc. But if we
3030
wanted to make the same crop on hundreds of images, say, the pages of a scanned book,
3131
then we could automate that cropping work by using shell commands.
3232

33-
Before getting started, we will use `ls` to verify where we are. Using `ls` periodically
34-
to view your options is useful to orient oneself.
33+
Before getting started, we will use `ls` to list the contents of our current directory. Using `ls` periodically to view your options is useful to orient oneself.
3534

3635
```bash
3736
$ ls

episodes/05-counting-mining.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ We will now use a loop to automate the counting of certain words within a docume
849849
$ mv pg514.txt littlewomen.txt
850850
```
851851

852-
This renames the file to something easier to type.
852+
This renames the file to something easier to remember.
853853

854854
Now let's create our loop. In the loop, we will ask the computer to go through the text, looking for each girl's name,
855855
and count the number of times it appears. The results will print to the screen.

instructors/instructor-notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@ And please also make use of our [Software Carpentry Windows Installer][windows-i
253253
Have them create the example directory for the shell exercises there
254254
so that they can find it easily and watch it evolve.
255255

256+
- On Windows, Microsoft OneDrive may appear in the home directory list. Desktop is often found inside the OneDrive directory.
257+
256258
***
257259

258260
[shebang]: https://www.in-ulm.de/~mascheck/various/shebang/

0 commit comments

Comments
 (0)