2016年7月11日 星期一

bash whiptail範例

#!/bin/bash

DIALOG=/usr/bin/whiptail;
exec 3>&1;
a=$($DIALOG --inputbox "input yes or no" 10 40 2>&1 1>&3)

$DIALOG --msgbox $a 10 40
exec 3>&-

沒有留言: