Skip to content

Commit f25da3f

Browse files
committed
Post-workshop edits
1 parent c8ebd30 commit f25da3f

File tree

2 files changed

+32
-10
lines changed

2 files changed

+32
-10
lines changed

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
- [Generalize your script](#generalize-your-script)
3737
- [(Optional) Text processing with Unix
3838
tools](#optional-text-processing-with-unix-tools)
39+
- [(Optional) Language interpreters are also shell
40+
commands](#optional-language-interpreters-are-also-shell-commands)
3941
- [Loops](#loops)
4042
- [A basic loop](#a-basic-loop)
4143
- [Simplify your loop with globs](#simplify-your-loop-with-globs)
@@ -591,11 +593,19 @@ cd ~/Desktop/shell-lesson-data/exercise-data/animal-counts/
591593
# Get the second column of the CSV
592594
cut -d , -f 2 animals.csv
593595
594-
# Get the unique values
595-
cut -d , -f 2 animals.csv | uniq
596+
# Sort the values
597+
cut -d , -f 2 animals.csv | sort
596598
597-
# Sort them
598-
cut -d , -f 2 animals.csv | uniq
599+
# Get unique values (`uniq` requires values to be adjacent to one another)
600+
cut -d , -f 2 animals.csv | sort | uniq
601+
```
602+
603+
## (Optional) Language interpreters are also shell commands
604+
605+
``` bash
606+
# 1. Run a python script that produces a .csv as output
607+
# 2. Extract the 2nd column of that .csv and get the unique values
608+
python script.py | cut -d , -f 2 | sort | uniq
599609
```
600610

601611
# Loops
@@ -734,7 +744,9 @@ find . -name "*.txt"
734744

735745
## Grep
736746

737-
TBD
747+
Grep is a powerful tool for matching text patterns by using *regular
748+
expressions*. You can find introductory documentation for regular
749+
expressions in the References section.
738750

739751
# Shell extras
740752

@@ -766,6 +778,8 @@ topics:
766778
<https://www.redhat.com/sysadmin/linux-shell-redirection-pipelining>
767779
6. Shell redirection operators (2):
768780
<https://www.gnu.org/software/bash/manual/html_node/Redirections.html>
781+
7. Grep regular expressions:
782+
<https://www.gnu.org/software/grep/manual/html_node/Regular-Expressions.html>
769783

770784
# Data Sources
771785

README.org

+13-5
Original file line numberDiff line numberDiff line change
@@ -438,11 +438,18 @@ cd ~/Desktop/shell-lesson-data/exercise-data/animal-counts/
438438
# Get the second column of the CSV
439439
cut -d , -f 2 animals.csv
440440

441-
# Get the unique values
442-
cut -d , -f 2 animals.csv | uniq
441+
# Sort the values
442+
cut -d , -f 2 animals.csv | sort
443443

444-
# Sort them
445-
cut -d , -f 2 animals.csv | uniq
444+
# Get unique values (`uniq` requires values to be adjacent to one another)
445+
cut -d , -f 2 animals.csv | sort | uniq
446+
#+END_SRC
447+
448+
** (Optional) Language interpreters are also shell commands
449+
#+BEGIN_SRC bash
450+
# 1. Run a python script that produces a .csv as output
451+
# 2. Extract the 2nd column of that .csv and get the unique values
452+
python script.py | cut -d , -f 2 | sort | uniq
446453
#+END_SRC
447454

448455
* Loops
@@ -565,7 +572,7 @@ find . -name "*.txt"
565572
#+END_SRC
566573

567574
** Grep
568-
TBD
575+
Grep is a powerful tool for matching text patterns by using /regular expressions/. You can find introductory documentation for regular expressions in the References section.
569576

570577
* Shell extras
571578
Consult the Wooledge Bash Guide (see references below) for more on these topics:
@@ -588,6 +595,7 @@ Consult the Wooledge Bash Guide (see references below) for more on these topics:
588595
4. Bash guide: https://mywiki.wooledge.org/BashGuide
589596
5. Shell redirection operators(1): https://www.redhat.com/sysadmin/linux-shell-redirection-pipelining
590597
6. Shell redirection operators (2): https://www.gnu.org/software/bash/manual/html_node/Redirections.html
598+
7. Grep regular expressions: https://www.gnu.org/software/grep/manual/html_node/Regular-Expressions.html
591599

592600
* Data Sources
593601
1. Lesson data: http://swcarpentry.github.io/shell-novice/data/shell-lesson-data.zip

0 commit comments

Comments
 (0)