接受整数作为参数并打印这些数字的总和,但出现命令未找到错误

发布于 2025-01-16 19:54:40 字数 319 浏览 0 评论 0原文

我想从命令行获取参数并打印整数之和。但如果没有给出参数,那么它应该给我总计为 0。

示例 vi sum.sh 包含以下代码

total=0

for i in $@; do
  (( total+=i ))
done

echo "The total is $total"

bash sum.sh 那么这应该给我输出 0

类似地,如果我给出 bash sum.sh 1 2 然后输出为 3,这是正确的,但在没有给出参数时它不起作用。

我收到错误总计:未找到命令

I want to take arguments from command line and print the sum of the integer. But if there is no argument given then it should give me total as 0.

Example vi sum.sh contains below code

total=0

for i in $@; do
  (( total+=i ))
done

echo "The total is $total"

bash sum.sh
Then this should give me output as 0

Similarly if I give bash sum.sh 1 2
then output coming as 3 which is correct but its not working when there is no arguments given.

I am getting error total: command not found.

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

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

发布评论

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

评论(1

何以心动 2025-01-23 19:54:40

试试这个:

total=0

for i in $@; do
  total=$(($total+$i ))
done

echo "The total is $total"

当您使用变量的值时,需要在它前面加上美元符号。
最重要的是,您需要 $((...)) 来执行计算。

编辑:示例
我已将这段脚本放入一个名为 test.sh 的文件中,并进行了以下测试(及其结果):

Prompt> sh test.sh 1 2 6
The total is 9

Try this:

total=0

for i in $@; do
  total=$(($total+$i ))
done

echo "The total is $total"

When you use the value of a variable, it needs to be preceded by a dollarsign.
In top of that, you need $((...)) to perform calculations.

Edit: example
I have put this piece of script in a file, called test.sh and did the following test (with its result):

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