gpt4 book ai didi

linux - Bsign : read password from stdin

转载 作者:太空宇宙 更新时间:2023-11-04 09:47:20 25 4
gpt4 key购买 nike

晚上好。

bsign 是否可以接受来自标准输入而非终端的密码?

或者,有没有办法改变密码输入程序?我希望我的脚本在将它们上传到测试台之前自动签署所有二进制文件。

最佳答案

bsign 知道将参数传递给 gpg-P 标志。

--passphrase-fd 0 将使您能够从标准输入读取密码。或者,您可以使用 --passphrase-file 从文件中读取它,甚至可以使用 --passphrase string 直接传递它。

bsign -P '--passphrase-fd 0' ...                       # Read from STDIN
bsign -P '--passphrase-file /path/to/file-or-pipe' ... # Read from a file
bsign -P '--passphrase "my password"' ... # Pass password as parameter

如果是第二个或第三个选项,请确保您正确转义,因为参数的内容将被再次解析(例如,\\\\ 如果您的密码包含一个反斜杠)。

关于linux - Bsign : read password from stdin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14896743/

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