Cut last Field

Guys,

I have a line like this: 109;201;1099010
and as you see that first field 109 and the last field starts with 109. I need to cut the rest in the last field after 109 which is 9010
How to do it?

Try this:

awk -F";" '{ sub($1,"",$NF); print $NF; }' < filename

Thanks brother it works