How to extract patterns form a text files in shell bash

前端 未结 5 1643
无人共我
无人共我 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:40

    awk/cut would be better choice for this problem.

    here is the sed line and grep option:

    sed -r 's/.*\.([^.]*)\..*/\1/'
    grep -Po '\.\K[^.]*(?=\.)' 
    

提交回复
热议问题