如何设置bash-whiptail输入框的默认文本



我正在制作一个简单的安装程序,它使用whiptail提示进行用户输入。我希望能够设置默认文本。不幸的是,默认项不起作用,并且似乎只用于菜单项。

MYLARUSER=$(whiptail --inputbox "Enter the user to run Mylar as (usually pi)" 8 78 $MYLARUSER --title "$SECTION" 3>&1 1>&2 2>&3)
exitstatus=$?; if [ $exitstatus = 1 ]; then exit 1; fi

我尝试过使用echo"default"| whiptail。。。但它似乎没有任何作用。

所以我的问题是重用我正在定义的变量。这要归功于这位reddit用户。

MYLARUSER=$(whiptail --inputbox "Enter the user to run Mylar as (usually pi)" 8 78 "defaulttext" --title "$SECTION" 3>&1 1>&2 2>&3)
exitstatus=$?; if [ $exitstatus = 1 ]; then exit 1; fi

相关内容

  • 没有找到相关文章

最新更新