0

我想用whiptail密码询问你的sudo密码,然后用它来运行sudo script.sh这可能吗?

我已经用whiptail输入密码尝试了这个sudo命令

sudo -S <<< $psw script.sh

echo $ psw | sudo -S

完整代码

#!/bin/bash

#Password Input
    psw=$(whiptail --title "Test Password Box" --passwordbox "Enter your password and choose Ok to continue." 10 60 3>&1 1>&2 2>&3)
    #Password If
    exitstatus=$?
    if [ $exitstatus = 0 ]; then
        sudo -S <<< $psw script.sh
    else
        #Password If cancel
        whiptail --title "Cancel" --msgbox "Operation Cancel" 10 60
    fi
4

1 回答 1

1

快速检查显示脚本应该可以工作(对我有用)。sudo您的脚本与 分开调用whiptail,因此两者不会干扰彼此对终端的使用。

脚本应该以

#!/bin/bash

因为它使用here-string

<<< $psw
于 2015-11-12T01:25:55.600 回答