标签:library load 关系 ram 开机启动 测试 存储 创建 没有
让你的程序在OSX中自动启动,是一件非常简单的事,只需要做一些简单的配置,它跟你的程序用什么样的语言并没有什么关系。第一步:创建plist配置文件,并将它存储在
~/Library/LaunchAgents/com.inmix.word.osx.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.inmix.word.osx</string>
<key>Program</key>
<string>你的应用程序路径</string>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
第二步测试你的守护进程
launchctl load ~/Library/LaunchAgents/com.inmix.word.osx.plist
launchctl unload ~/Library/LaunchAgents/com.inmix.word.osx.plist
标签:library load 关系 ram 开机启动 测试 存储 创建 没有
原文地址:https://blog.51cto.com/adadream/2488907