函数参数

函数参数

我在编写简单的 bash 脚本时遇到了麻烦。

我有一个完美运行的 bash 脚本:

function convert_to ()

x_max=2038
y_max=1146
x_marg=100
y_marg=30
x_grid=150
y_grid=150

if (("$x_pos" > "($x_marg+($x_grid/2))")); then
    x_pos=$((x_pos-x_marg))
    x_mod=$((x_pos%x_grid))
    x_pos=$((x_pos/x_grid))
    x_pos=$((x_pos*x_grid))
fi

但是,我想更改脚本,将 4 个值作为参数传递给函数:

function convert_to ()

pos="$1"
marg="$2"
grid="$3"
max="$4"

# I verify that the inputs have arrived with this display 
zenity --info --title "Info" --text "inputs: pos: $pos marg: $marg grid: $grid max: $max"

if (("$pos" > "($marg+($grid/2))")); then
    pos=$((pos-marg))
    mod=$((pos%grid))
    pos=$((pos/grid))
    pos=$((pos*grid))
fi
}

然后我将调用该函数,如下所示:

x_pos="$(convert_coordinates $x_pos, $x_marg, $x_grid, $x_max)"
Y_pos="$(convert_coordinates $y_pos, $y_marg, $y_grid, $y_max)"

但是,新脚本总是因语法错误而失败:需要操作数(错误标记为“,”)。

我也尝试过很多变体:

pos=$[[ $pos - $marg ]] ...... which results in syntax error: operand expected (error token is "[ 142, - 100, ]")
pos=[[ $pos - $marg ]] .......... fails with command not found
pos=$[[ "$pos" - "$marg" ]] ..... fails with command not found
pos=$(("$pos"-"$marg")) ......... syntax error: operand expected (error token is ""142,"-"100,"")

工作脚本和非工作脚本之间的唯一区别是我在第二个脚本中传递参数...因此,我尝试将参数值设置为函数内的常量值(违背了我传递参数并使脚本毫无价值)..但是,现在函数内的计算工作正常,没有错误。

所以我对我做错的事情感到不知所措......我希望能够将参数传递给函数,然后使用传递的值进行数学计算。

答案1

,参数分隔符是空格,所以:

代替 :

x_pos="$(convert_coordinates $x_pos, $x_marg, $x_grid, $x_max)"

x_pos="$(convert_coordinates $x_pos $x_marg $x_grid $x_max)"

相关内容