To extract last column of file

Hi,
I need to extract last column of each row of a file (may be 'cut' should do).
And I don't know the number of last column.

hi

you mean this?

awk '{print $NF}'  file

bye

D

Thanks Dedalus, I was looking for this exactly.