开发者

<<END_SCRIPT while connecting to FTP via bash

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
开发者_如何学Go

What 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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜