gpt4 book ai didi

bash - 从 tcsh 转换为 bash 问题

转载 作者:行者123 更新时间:2023-12-04 14:38:47 27 4
gpt4 key购买 nike

我正在尝试将 tcsh 脚本转换为 bash 脚本。此脚本以这种方式调用 gnuplot:

#!/bin/tcsh
<script commands>
gnuplot << EOF
set terminal png
<other commands>
plot <args>

我试图将“tcsh”修改为“bash”,但我得到“此处文档位于第 x 行,由文件结尾分隔(需要 ‘EOF’)”。这是为什么?

最佳答案

正如错误消息所说:您需要使用开始时给定的字符串结束此处文档,在本例中为 EOF。您不能只使用文件末尾来终止此处的文档。

例如,这是我使用此处文档的脚本片段:

/usr/bin/gnuplot << GPLOT
set terminal png
set output "$3"
set logscale xy
set xlabel "$1"
set ylabel "$2"
plot "tmp2.$$" notitle
GPLOT

因为我用 GPLOT 开始了 here doc,bash 寻找 GPLOT 来指示 here doc 的结尾。

关于bash - 从 tcsh 转换为 bash 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10333624/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com