redirection and output

I'm redirecting the output of a command to a logfile, however, if the user is on a terminal I would also like the output to be displayed on the screen.

tar tvf some_tarfile >Logfile

if the user is on a term then have the output to the Logfile and also be displayed on the screen at the same time.

look into 'man tee'

That's what I was looking for. My brain was having a lapse this morning.

Thank you