copying files to a remote aix server using tar!

Hi,
I am using AIX 5.2, and I want to copy some files from one server to a remote server using tar command. Can anybody tell me exact command?
Thanks.

Aqeel

Why tar ? Local tar for first and then use ftp.

Try
tar cf - ./somedir | ssh remoteserver ( cd /somedir ; tar xf- )