运行脚本变量时找不到命令

发布于 2025-02-09 12:09:01 字数 443 浏览 2 评论 0原文

我正在尝试创建一个简单的脚本,从而比较用户输入(bday),并将其与当前日期进行比较。

我得到的结果是[$ bday ..]找不到命令?

可以通过解释来感谢您的帮助

#!/bin/bash

echo please enter your bday YYYY-MM-DD
read bday
dates=$(date +%F)
echo $dates

if [$bday == $dates]
then
 echo Happy Birthday
else
 echo Happy not Birthday
fi

#strip $date of day-month-year integers only
#arrange into YYY-MM-DD
#compare the two
#date --help```

I am trying to create a simple script whereby I compare a user input (bday) and compare it with the current date in a certain format.

The result I get is that [$bday..] command not found?

Would appreciate the help on this, with an explanation

#!/bin/bash

echo please enter your bday YYYY-MM-DD
read bday
dates=$(date +%F)
echo $dates

if [$bday == $dates]
then
 echo Happy Birthday
else
 echo Happy not Birthday
fi

#strip $date of day-month-year integers only
#arrange into YYY-MM-DD
#compare the two
#date --help```

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

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

发布评论

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

评论(1

洋洋洒洒 2025-02-16 12:09:01

您的线路缺少空格。

如果[$ bday == $ dates]

在这里,shell正在搜索一个名为的命令[$ bday不存在并引发错误。 应该是

相反,如果[$ bday == $ dates]

Your line here is missing whitespace.

if [$bday == $dates]

Here the shell is searching for a command named [$bday which doesn't exist and throws an error. It should instead be

if [ $bday == $dates ]

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