Need to remove the words

Hi folks,

I have file with the below

1245633505 +manual mroennfeldt@news.com.au
1245633506 +manual sal@bynews.com.au
1245633506 +manual whson@btimes.com
1245633507 +manual karla.marsden@tnews.com.au
1245633508 +manual king@netn.com.au

Now, I need the output of the files only with the email ids and not the +manual or the number in the new file via shell script.

If all lines in the file match your example:

awk '{print $3}' filename > newfilename

Thanks

Command:

cut -d ' ' -f3 <filename>

yes, it worked out thanks a lot.