我正在使用远程超级计算机来运行我的c ++代码,用qt creator编写并在Ubuntu中构建。我尝试使用Matlab dos命令运行我的代码,以便使用parfor运行我的c ++代码的多个副本。在运行期间,我需要输入密码的每个代码。因此,我的问题是:如何在Ubuntu中将密码传递给命令终端?我试过跟随代码,但它没有用。
sudo ./MyCode 10 <\$(read -sp "Password: " myPassword; echo $password)
sudo ./MyCode 10 ----> this command work but it require entering the password I want to get rid of entering password.
提前致谢。