here document word with quotation mark or not

来源:互联网 发布:互站网源码 编辑:程序博客网 时间:2024/06/07 07:24
 

Here Documents

This type of redirection instructs the shell to read input from the current source until a line containing only word (with no trailing blanks) is seen. All of the lines read up to that point are then used as the standard input for a command.

The format of here-documents is as follows:

<<[-]word        here-documentdelimiter

No parameter expansion, command substitution, arithmetic expansion, or filename expansion is performed on word. If any characters in word are quoted, the delimiter is the result of quote removal on word, and the lines in the here-document are not expanded. If word is unquoted, all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion. In the latter case, the character sequence /newline is ignored, and `/' must be used to quote the characters `/', `$', and ``'.

原创粉丝点击