Standard output and redirection

Hello,

Is is possible to redirect stdout to a file as well as to the console/screen or display in ksh.

any thoughts suggestions/input is appreciated. Thanks.

Use Tee

ls -lt | wc -l | tee /dev/tty file.txt

Thanks. I will use tee command.