Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 iOS 创建一个 .deb 安装包,我需要设备在安装包后要求在 Cydia 中重新启动,如何将这样的功能添加到我的 postinst 脚本中?以下内容已经在脚本中(它将文件权限设置为 755,之后我需要重新启动)
#!/bin/sh chmod 755 /usr/libexec/airtunesd chmod 755 /System/Library/LaunchDaemons/com.apple.airtunesd.plist exit 0
谢谢!:)