I have input text file e.g myfile.txt
which is contains data like
WO_ID
------------------------------------------------------------------------
moveover_virus_8493020020_virus.final
moveover_virus_7483920322_virus.csvwork
etc. only phone number is changing I have some 13 work orders like this I need to take only number as a input from this for that I need a script in perl. I need to create that script I am trying grep but I am unable get only numbers.
awk -F_ '$3&&!a[$3]++{print $3}'
– 123 Jul 20 '16 at 13:05