如何将变量值传递给 gpg 命令
$importkey = system('gpg --import newkey.asc . $username');
需要将文件名作为变量传递。这样文件名及其内容就可以导入到 gnupg 密钥环中。
$gpg = system('gpg --recipient userid --output filename --armor --encrypt filename to encrypt', $retvalue);
我如何将收件人电子邮件 ID(用户 ID)和文件名作为变量传递给 gpg 命令
谢谢!
$importkey = system('gpg --import newkey.asc . $username');
need to pass the file name as a variable.so that file name with its contents can be import in gnupg keyring.
$gpg = system('gpg --recipient userid --output filename --armor --encrypt filename to encrypt', $retvalue);
how can i pass the recipient email id(userid) and the filename as variable to gpg commands
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如将 ' 更改为 ",然后您可以传入变量:
Change the ' to " for example and then you can pass in variables: