Okay... I've tried and tried and now I'm stuck. I've even had to try my hand at self-teaching vi today. Thank god for the net. I've tried a few examples on this post. This is what I have so far: it will send one file over. I need the files contained in a whole directory ftp'd over. Help!
ftp_pwd=patti@test.com
ftpfile=patti
ftp -ni 100.0.2.41 <<EOF
user $ftp_user $ftp_pwd
ascii
mput $ftpfile
bye
EOF
ftp_pwd=patti@test.com
ftpfile=patti
ftp -ni 100.0.2.41 <<EOF
user $ftp_user $ftp_pwd
ascii
mput $ftpfile
bye
EOF