How to redirect the output to multiple files without putting on console

How to redirect the output to multiple files without putting on console

I tried tee but it writes to STDOUT , which I do not want.

Test.sh
------------------
#!/bin/ksh
echo "Hello " tee -a file1 file2
----------------------------
$>./Test.sh
$>
Expected output:
-------------------
cat file1
Hello
cat file2
Hello

Hi.

echo "Hello " | tee -a file1 >> file2

or

echo "Hello " | tee -a file1 file2 >/dev/null

Don't foget the pipe ... cheers, drl

This is a similar homework question:

http://www.unix.com/shell-programming-scripting/117821-unix-shell-output-redirection-help.html\#post302347739

+++++++++++++++++++++++++++++++++++++++++

Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.