什么是鱼相当于&lt; <eof in =“”bash =“”

时间:2015-05-20 18:08:20

标签: bash shell fish

=“”

什么是鱼等效于&lt;&lt;在Bash中,如

$ nc localhost 8888 << EOF
> foo
> EOF

在Fish中,它崩溃了

> nc localhost 8888 << EOF
fish: Expected redirection specification, got token of type 'Redirect input to file'
nc localhost 8888 << EOF
               ^

2 个答案:

答案 0 :(得分:3)

Fish中没有实现。您可以阅读Bash / Fish语法交叉HERE

答案 1 :(得分:1)

感谢Etan提供的链接,我发现这个功能没有实现,最接近的是

> echo "\
  foo
  " | nc localhost 8888