I have never written a shell-script before and am trying to understand this piece of code:
ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
put $FILE
quit
END_SCRIPT
exit 0
开发者_如何学GoWhat does the <<END_SCRIPT
signify? And what is the quote call doing? Thanks in advance, again I am a super newb
The <<
is heredoc syntax in bash
For the quote, put, quit
is FTP command
精彩评论