Bash 脚本使用控制语句添加前 10 个数字,即 1 到 10
我想知道如何使用 bash 脚本添加前 10 个数字。添加应该使用控制语句来完成。我需要使用数组吗?如果有人能给我举个例子,我将非常感激。
谢谢。
I want to know how can we add the first 10 numbers using bash script. The addition should be done using control statement. Do I need to use Array ? if someone can show me an example then I would very thankful.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 bash 中尝试这个脚本:
输出
Try this script in bash:
OUTPUT
这可能是一个人为的答案,但它确实完成了工作。
bc 是一个计算器:
查看 man seq/bc 了解有趣的细节..
This is perhaps a contrived answer, but it does the job..
bc is a calulator:
Check out man seq/bc for the juicy details..