如何使用 bash 脚本将命令带到前台

如何使用 bash 脚本将命令带到前台

在工作中,我登录 VPN 连接。此 VPN 进行 2fa 连接,并向我发送代码。当我将命令放在 bash 脚本上时,系统不会提示我输入代码。脚本只是停留在那里,最终超时。我怎样才能将命令带到前台输入代码,然后继续执行脚本?

#!/bin/bash
 
/usr/local/bin/openfortivpn -c /usr/local/Cellar/openfortivpn/my-config
#at this point it is supposed to ask me for the password and it doesn’t.  It just sits there

#rest of script#

相关内容