here-document gives 'unexpected end of file' error

后端 未结 7 2561
生来不讨喜
生来不讨喜 2020-11-22 04:42

I need my script to send an email from terminal. Based on what I\'ve seen here and many other places online, I formatted it like this:



        
7条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 05:21

    Note one can also get this error if you do this;

    while read line; do
      echo $line
    done << somefile
    

    Because << somefile should read < somefile in this case.

提交回复
热议问题