为什么这个简单的 bash 代码会出现语法错误?

发布于 2024-09-05 21:49:40 字数 438 浏览 3 评论 0原文

我有以下 bash 代码,它是从“bash 食谱”(第一版)复制并粘贴的:

#!/bin/bash

VERBOSE=0;
if [[ $1 =-v ]]
then
    VERBOSE=1;
    shift;
fi

当我运行此代码(bash 4.0.33)时,我收到以下语法错误:

./test.sh: line 4: conditional binary operator expected
./test.sh: line 4: syntax error near `=-v'
./test.sh: line 4: `if [[ $1 =-v ]]'

这是否像 bash 中的打印错误一样简单食谱,或者是否存在版本不兼容或其他问题?最明显的解决办法是什么?我尝试过更改操作符的各种组合,但我不太熟悉 bash 脚本。

I have the following bash code, which is copied and pasted from "bash cookbook" (1st edition):

#!/bin/bash

VERBOSE=0;
if [[ $1 =-v ]]
then
    VERBOSE=1;
    shift;
fi

When I run this (bash 4.0.33), I get the following syntax error:

./test.sh: line 4: conditional binary operator expected
./test.sh: line 4: syntax error near `=-v'
./test.sh: line 4: `if [[ $1 =-v ]]'

Is this as simple as a misprint in the bash cookbook, or is there a version incompatibility or something else here? What would the most obvious fix be? I've tried various combinations of changing the operator, but I'm not really familiar with bash scripting.

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

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

发布评论

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

评论(1

野心澎湃 2024-09-12 21:49:42

Bash 使用空格来标记脚本。该行:

if [[ $1 =-v ]]

应该是:

if [[ $1 = -v ]]

Bash uses spaces to tokenise scripts. The line:

if [[ $1 =-v ]]

should be:

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