Update 03_6_uebung_text_durchsuchen_und_woerter_zaehlen.md
This commit is contained in:
parent
ed74a4e788
commit
9f6618c78d
|
@ -2,12 +2,12 @@
|
||||||
|
|
||||||
siehe auch https://librecatproject.wordpress.com/2014/12/04/day-4-grep-less-and-wc/
|
siehe auch https://librecatproject.wordpress.com/2014/12/04/day-4-grep-less-and-wc/
|
||||||
|
|
||||||
### Schritt 1: "War and Peace" von Leo Tolstoy herunterladen
|
## Schritt 1: "War and Peace" von Leo Tolstoy herunterladen
|
||||||
* ```curl http://www.gutenberg.org/files/2600/2600-0.txt > war_and_peace.txt```
|
* ```curl http://www.gutenberg.org/files/2600/2600-0.txt > war_and_peace.txt```
|
||||||
|
|
||||||
### Schritt 2: Zeilen, Wörter und Zeichen zählen mit wc
|
## Schritt 2: Zeilen, Wörter und Zeichen zählen mit wc
|
||||||
* ```wc war_and_peace.txt```
|
* ```wc war_and_peace.txt```
|
||||||
|
|
||||||
### Schritt 3: Suche nach Vorkommnissen der Wörter "war" and "peace"
|
## 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 war | wc```
|
||||||
* ```cat war_and_peace.txt | grep -i -ow peace | wc```
|
* ```cat war_and_peace.txt | grep -i -ow peace | wc```
|
Loading…
Reference in New Issue