Update 03_6_uebung_text_durchsuchen_und_woerter_zaehlen.md
This commit is contained in:
parent
cf745164e4
commit
abd9732510
|
@ -1,7 +1,5 @@
|
|||
# 3.6 Übung: Text durchsuchen und Wörter zählen
|
||||
|
||||
siehe auch https://librecatproject.wordpress.com/2014/12/04/day-4-grep-less-and-wc/
|
||||
|
||||
## Schritt 1: "War and Peace" von Leo Tolstoy herunterladen
|
||||
* ```curl http://www.gutenberg.org/files/2600/2600-0.txt > war_and_peace.txt```
|
||||
|
||||
|
@ -10,4 +8,10 @@ siehe auch https://librecatproject.wordpress.com/2014/12/04/day-4-grep-less-and-
|
|||
|
||||
## Schritt 3: Suche nach Vorkommnissen der Wörter "war" and "peace"
|
||||
* ```cat war_and_peace.txt | grep -i -ow war | wc```
|
||||
* ```cat war_and_peace.txt | grep -i -ow peace | wc```
|
||||
* ```cat war_and_peace.txt | grep -i -ow peace | wc```
|
||||
|
||||
## Siehe auch
|
||||
Ausführlichere Übung im Blog des Projekts Librecat/Catmandu:
|
||||
https://librecatproject.wordpress.com/2014/12/04/day-4-grep-less-and-wc/
|
||||
|
||||
Bitte beachten: Die dort referenzierte Textdatei ist anders strukturiert als die obige *war_and_peace.txt* und liefert daher andere Zählergebnisse.
|
Loading…
Reference in New Issue