You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#grep -i -n $grepText $filename #ignore case and print line foud the text
#grep -i -n -c $grepText $filename #ignore case and print line foud the text and print only number of times occurs
grep -i -n -v $grepText $filename # -i ignore case and -n print line foud the text -v without seach word print line and -c print only number of times occurs