shell-write 命令问题 - 如何添加“键”通过终端到 plist 文件? (iPhone、移动终端)

发布于 2024-11-05 10:38:50 字数 376 浏览 3 评论 0原文

我想在移动终端(iPhone)中运行此命令:

write "/myPlist.plist" TestKey "TestStringForKey"

但它说:'write'命令未找到

plist存在!

我做错了什么?

还有其他办法吗?

编辑:TestKey 不存在于 plist 中。我想创造它。

编辑:一些信息:带有 iOS 4.2.1 的 iPod Touch 和来自 googlecode 的最新移动终端。

编辑:现在我安装了“write”。 如果我运行命令,我会得到: usage: write user [tty]

I wanted to run this command in mobileterminal (iphone):

write "/myPlist.plist" TestKey "TestStringForKey"

but it says: 'write' command not found

The plist EXISTS!

What am I doing wrong?

Is there any other way?

EDIT: TestKey does not exist in the plist. I want to create it.

EDIT: Some infos: iPod Touch with iOS 4.2.1 and with the newest mobileterminal from googlecode.

EDIT: Now I installed "write".
If I run the command i get this: usage: write user [tty]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

逆蝶 2024-11-12 10:38:50

我认为您需要 defaults 命令:

defaults write "myPlist.plist" TestKey "TestStringForKey"

I think you want the defaults command:

defaults write "myPlist.plist" TestKey "TestStringForKey"
£噩梦荏苒 2024-11-12 10:38:50

我用它来通过 iPhone 终端写入 plist 文件。只需确保您已从 Cydia 安装了 ericautilities。

plutil -key ShowedAlert -value nope /dir/ect/ory/to/playlist.plist

I use this to write to a plist file with iPhone terminal. Just make sure you have ericautilities installed from Cydia.

plutil -key ShowedAlert -value nope /dir/ect/ory/to/playlist.plist
清醇 2024-11-12 10:38:50

/myPlist.plist 表示 myPlist.plist 位于您的根目录中。我想,它在你当前的工作目录中,所以只需使用

write "myPlist.plist" TestKey "TestStringForKey"

/myPlist.plist means, that myPlist.plist is in your root directory. I think, it's in your current working directory, so just use

write "myPlist.plist" TestKey "TestStringForKey"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文