I had a ~300mb text file full of asterisk calls which needs to be sent to a customer although cannot include specific information,
The only information i would like to extract is as follow;
Everything between the asterisks *NUMBER#NUMBER,sip-out*
I was thinking of using a awk similar to .*#(\d+),sip-out.*
on the file numbers.txt
Although my formatting is slightly wrong. any ideas?
The goal is to print out on the screen \n
in between the above asterisks.
Thanks in advance.
Ashley