gpt4 book ai didi

c - Bash 脚本中的流程控制和返回值

转载 作者:行者123 更新时间:2023-11-30 15:34:11 29 4
gpt4 key购买 nike

我对 bash 脚本相当陌生,我一直在研究一个可以为我做一些事情的小 bash 文件。首先,我使用 system() 从 C 函数调用它,并且我希望脚本返回一个值(1 表示错误,0 表示正常)。这可能吗?

int kinit() {
int err = system("/home/bluemoon/Desktop/GSSExample/kinitScript.sh");
}

其次,使用 Zenity,我设法创建一个弹出窗口来插入用户/密码。现在,根据用户所做的事情,应该会发生多种事情。如果他关闭窗口或单击“取消”,则不会发生任何事情。如果他单击“确定”,那么我应该检查输入(是否有空文本框或其他内容)。

假设输入正确,我将使用 Expect 运行 kinit 程序(它是与 Kerberos 相关的提示符)并登录。现在,如果密码正确,提示符将关闭,脚本应返回 0。如果不正确,提示符将显示类似“Kinit:用户未找到”的内容。我想在任何错误情况下(关闭窗口、单击取消或错误的凭据)在我的脚本中返回 1,并在成功时返回 0。

#!/bin/bash
noText=""
ENTRY=`zenity --password --username`
case $? in
0)
USER=`echo $ENTRY | cut -d'|' -f1`
PW=`echo $ENTRY | cut -d'|' -f2`

if [ "$USER"!="$noText" -a "$PW"!="$noText" ]
then
/usr/bin/expect -c 'spawn kinit '`echo $USER`'; expect "Password for '`echo $USER`':" { send "'`echo $PW`'\r" }; interact'
fi
;;
1)
echo "Stop login.";;
-1)
echo "An unexpected error has occurred.";;
esac

如果工作不正常,expect 命令总是运行。取消或关闭 Zenity 窗口也始终会导致情况“0”。我也尝试返回一个变量,但它说我只能从函数内部返回变量?

好吧,如果有人能给我一些指示,我将不胜感激。戴夫

最佳答案

i'd like the script to return a value

当然,只需在适当的地方使用exit

exit: exit [n]    Exit the shell.    Exits the shell with a status of N.  If N is omitted, the exit status    is that of the last command executed.

My if isn't working properly, the expect command is always run.

if [ "$USER" != "$noText" -a "$PW" != "$noText" ]
# ^ ^ ^ ^
# | | | |
# \----- notice spaces ----/

关于c - Bash 脚本中的流程控制和返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23398455/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com