Redirecting my output to a specific file

Hi guys am doing some checking inside my script and i want to redirect my output to a specific file for example checking if a move was successfully done and was writing on the screen whether the move was successful or not and now want to write same thing into a file...
I am new to shell programming...
Thanks for your kind consideration

Lutchumaya

> <filename>

">" redirection symbol

">>" append the same file

tee <filename> (print output to the screen as well as to the file)

tee -a <filename> (append the file)

Thanks krrishv will try this n will let u know .....