作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要编写一个bash脚本,该脚本接收一个数组(N个空格分隔的整数)作为命令行参数,并输出整数的总和。
当我将字符串作为参数传递时,我从expr
中收到错误,而我的程序应该写一条以Usage:
开头的错误消息,如下所述。
bash : test.sh hello world
expr: non-integer argument
#!/bin/bash
for i do
sum=$(expr $sum + $i)
done
echo $sum
$ bash my-script.sh 1 2 3 4
10
$ bash my-script.sh
Usage:- bash my-script.sh space-separated-integers
$ bash my-script.sh hello world
Usage:- bash my-script.sh space-separated-integers
最佳答案
#!/usr/bin/env bash
# No arguments
if [[ $# -eq 0 ]]; then
echo "Usage:- bash $0 space-separated-integers" >&2
exit 1
fi
result=0
reg='^[0-9]+$'
# One argument is not a number
for arg in "$@"; do
if ! [[ $arg =~ $reg ]] ; then
echo "Usage:- bash $0 space-separated-integers" >&2
exit 1
else
((result += arg))
fi
done
echo "$result"
关于python - 如何在不输出到Bash中的stderr的情况下添加命令行参数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55521021/
我是一名优秀的程序员,十分优秀!