我有一个需要用户输入的命令行应用程序:
./some_application
# something happens here.....
# something happens here too.....
Enter secret pass phrase:
我想从终端调用它并立即向其传递秘密密码短语,而无需手动输入。我怎样才能做到这一点?我已经尝试过,但没有成功,仍然被要求提供秘密密码:
./some_application my_secret_pass_phrase
我有一个需要用户输入的命令行应用程序:
./some_application
# something happens here.....
# something happens here too.....
Enter secret pass phrase:
我想从终端调用它并立即向其传递秘密密码短语,而无需手动输入。我怎样才能做到这一点?我已经尝试过,但没有成功,仍然被要求提供秘密密码:
./some_application my_secret_pass_phrase