I'm getting the following error while executing the script. Don't know where I'm getting it wrong.
Error message:
./ftp_send_script.sh: line 40: syntax error: unexpected end of file
Here is the script
#!/usr/bin/bash
#Define Variables
#------------------------------------------------------------------------------
HOST=qftpserver
USER=ftpuser
PASS=password
#------------------------------------------------------------------------------
#FTP files
#------------------------------------------------------------------------------
for FILE in `ls *.txt`
do
ftp -n -p << EOT
open $HOST
user $USER $PASS
prompt n
type binary
mput ${FILE}
quit
EOT
echo ${FILE}
done
#------------------------------------------------------------------------------