bash if 语句中的 EOF

发布于 2025-01-06 20:34:30 字数 498 浏览 1 评论 0原文

我正在尝试在 Bash 中的 IF ELSE 语句中执行操作,但收到如下错误:

语法错误:文件结尾意外(期望“fi”)

现在我对此很陌生,所以我的问题的解决方案可能不应该那么困难:)

if [ "$DAYNAME" = 'Sunday' ]; then
    echo 'The backup will be uploaded'
    ftp -n $HOST <<EOF
        quote USER $USER
        quote PASS $PASSWD
        put $filetoday
        delete ${filethreeweeksago}
        quit
    EOF
fi

当然变量已经填满了。

我认为这与 EOF 表示法有关,因为当我删除它们时,问题就消失了。不幸的是,我不知道如何使用没有 EOF 符号的代码。

谁能告诉我为什么会出现这个错误?

I am trying to do an action in a IF ELSE statement in Bash, but receive an error like this one:

Syntax error: end of file unexpected (expecting "fi")

Now I am quite new to this, so probably the solution to my problem should not be that difficult :)

if [ "$DAYNAME" = 'Sunday' ]; then
    echo 'The backup will be uploaded'
    ftp -n $HOST <<EOF
        quote USER $USER
        quote PASS $PASSWD
        put $filetoday
        delete ${filethreeweeksago}
        quit
    EOF
fi

Of course the vars are already filled.

I think it has to do with the EOF notation, because when i remove them, the problem disapears. Unfortunatly I don't know how to use the code without the EOF notation.

Can anyone tell me why this error is comming up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

陌伤浅笑 2025-01-13 20:34:30

删除空白,它应该可以工作:

    EOF
^^^^

Drop the blanks and it should work:

    EOF
^^^^
一个人的夜不怕黑 2025-01-13 20:34:30

如果要保留选项卡,请在 EOF 中添加破折号:
从:

ftp -n $HOST <<EOF

到:

ftp -n $HOST <<-EOF

add a dash to EOF if you want to keep the tabs:
from:

ftp -n $HOST <<EOF

to:

ftp -n $HOST <<-EOF
魔法唧唧 2025-01-13 20:34:30

https://github.com/koalaman/shellcheck/wiki/SC1039

这里的文档分隔符如果缩进将不会被识别。

您可以通过以下两种方法之一修复它:

1.只需删除缩进,即使这可能会破坏格式。

2.使用<<-代替<<,并且仅使用制表符缩进脚本(空格将不会被识别)。

最好删除缩进,因为如果重新格式化、复制粘贴或使用其他编辑器保存,脚本不会突然中断。

https://github.com/koalaman/shellcheck/wiki/SC1039

The here document delimiter will not be recognized if it is indented.

You can fix it in one of two ways:

1.Simply remove the indentation, even though this may break formatting.

2.Use <<- instead of <<, and indent the script with tabs only (spaces will not be recognized).

Removing the indentation is preferred, since the script won't suddenly break if it's reformatted, copy-pasted, or saved with a different editor.

清浅ˋ旧时光 2025-01-13 20:34:30

If-Else 内的

EOL EOL 语法可以是这种类型

if [ condition ]; then
    echo "Comment"
else
    cat >> file.txt <<-EOL

    EOL
fi

EOL inside If-Else

Syntax of EOL can be this type

if [ condition ]; then
    echo "Comment"
else
    cat >> file.txt <<-EOL

    EOL
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文