Basic UNIX Commands - grep

preview_player
Показать описание
An introduction to the UNIX command "grep"

Рекомендации по теме
Комментарии
Автор

I have a directory called file3
Within file3 I have the content

Mary had a little lamb
The cat sat on the hat
Mary had a little lamb
The cat sat on the hat

I done grep -n -i lit*le file3 - this came back with the message grep: No match.
Why is this?

Thanks

PedroKarsan
Автор

I don't disagree. I got better with practice, watch some of my more recent videos.

johnfoster
Автор

$ grep -i "charisma" lecture
$

RainDog