I would like to isolate a term in a specific line defined as follow :
enO.u16LINK=0x01
I succeed in isolate 0x01 by using value=${lines##*=}.
At the same time I succeed in retrieve enO.u16LINK using ${lines%=*}.
However, I do not find how to isolate enO and u16LINK in two different variable.
Somebody knows a regular expression to satisfy this need ?