How to extract patterns form a text files in shell bash

前端 未结 5 1646
无人共我
无人共我 2021-01-21 16:01

I have a text file that contains:

toto.titi.any=val1
toto.tata.any=val2
toto.tete.any=val2

How to extract titi , tata

5条回答
  •  野的像风
    2021-01-21 16:46

    sed -n 's/^[^.]*.\([^.]*\)..*/\1/p' myfile.txt
    

    display second value between dot from line having at least 2 dot inside

提交回复
热议问题