Issue
in a file how could I select line where there is :
Value_1
and Name_species
Value_1:(O)_content_:Name_species
I tried
grep "Value_1:*:Name_species" file
but it does not work...
Solution
alternative
grep -E "Value_1:.*:Name_species" <filename>
Answered By - UtLox Answer Checked By - Pedro (WPSolving Volunteer)