|
36 | 36 | - [Generalize your script](#generalize-your-script)
|
37 | 37 | - [(Optional) Text processing with Unix
|
38 | 38 | tools](#optional-text-processing-with-unix-tools)
|
| 39 | + - [(Optional) Language interpreters are also shell |
| 40 | + commands](#optional-language-interpreters-are-also-shell-commands) |
39 | 41 | - [Loops](#loops)
|
40 | 42 | - [A basic loop](#a-basic-loop)
|
41 | 43 | - [Simplify your loop with globs](#simplify-your-loop-with-globs)
|
@@ -591,11 +593,19 @@ cd ~/Desktop/shell-lesson-data/exercise-data/animal-counts/
|
591 | 593 | # Get the second column of the CSV
|
592 | 594 | cut -d , -f 2 animals.csv
|
593 | 595 |
|
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 |
596 | 598 |
|
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 |
599 | 609 | ```
|
600 | 610 |
|
601 | 611 | # Loops
|
@@ -734,7 +744,9 @@ find . -name "*.txt"
|
734 | 744 |
|
735 | 745 | ## Grep
|
736 | 746 |
|
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. |
738 | 750 |
|
739 | 751 | # Shell extras
|
740 | 752 |
|
@@ -766,6 +778,8 @@ topics:
|
766 | 778 | <https://www.redhat.com/sysadmin/linux-shell-redirection-pipelining>
|
767 | 779 | 6. Shell redirection operators (2):
|
768 | 780 | <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> |
769 | 783 |
|
770 | 784 | # Data Sources
|
771 | 785 |
|
|
0 commit comments