macOS钥匙串创建不可编辑的访问组条目

问题描述 投票:0回答:1

Xcode具有一个Internet密码,它与特定的访问组一起存储在钥匙串中。我正在尝试使用security命令行工具复制此文件,但不确定如何提供非应用程序二进制文件进行访问。

security add-internet-password -a "USER" -w "PASS" -s sample.com -A

我将如何包含59GAB85EFG.com.apple.dt.Xcode

KeychainEntry

macos security terminal keychain
1个回答
0
投票

您可以包括这样的应用程序路径:

security add-internet-password -a "USER" -w "PASS" -s sample.com -T /Applications/Xcode.app
© www.soinside.com 2019 - 2024. All rights reserved.