bash – 如何在循环中使用here文档?

前端之家收集整理的这篇文章主要介绍了bash – 如何在循环中使用here文档?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > syntax error: unexpected end of file1个
这有效:
name="test.txt"

yap -q << % > $name
  [experiment_yap],exp1_min(brother,2).
%

这不是:

for i in 01 02 03 04 05
do
  name="test.txt"

  yap -q << % > $name
    [experiment_yap],2).
  %
done

我收到第19行:语法错误:意外的文件结束

它并没有处于一个重要的循环中. bash并不真正了解或关心缩进 – 要识别heredoc的结尾,终止字符串必须位于行的开头,这使得循环看起来像:
for i in 01 02 03 04 05
do
  name="test.txt"

  yap -q << % > $name
    [experiment_yap],2).
%
done
原文链接:https://www.f2er.com/bash/386890.html

猜你在找的Bash相关文章