昨天我得到了一个非常简单的任务,但不幸的是,看起来我不能用一个好的代码来做。
任务简要:我有很多参数,我想在安装程序脚本中使用whiptail“交互”模式询问。
代码细节:
#!/bin/bash
address="192.168.0.1" # default address, what the user can modify
addressT="" # temporary variable, that I want to check and modify, thats why I don't modify in the function the original variable
port="1234"
portT=""
... #there is a lot of other variable that I need for the installer
function parameter_set {
$1=$(whiptail --title "Installer" --inputbox "$2" 12 60 "$3" 3>&1 1>&2 2>&3) # thats the line 38
}
parameter_set "addressT" "Please enter IP address!" "$address"
parameter_set "portT" "Please enter PORT!" "$port"
但我收到以下错误:
"./install.sh: line: 38: address=127.0.0.1: command not found"
如果我将变量修改为另一个(不是函数的参数),效果很好。
function parameter_set {
foobar=$(whiptail --title "Installer" --inputbox "$2" 12 60 "$3" 3>&1 1>&2 2>&3)
echo $foobar
}
我尝试使用全局 retval 变量,并将函数外部分配给原始变量,它可以工作,但我认为这不是这项任务的最佳解决方案。
任何人都可以帮助我,我做错了什么?:)
在此先感谢(对不起我的英语不好..),阿提拉