标签: bash macos
我们在OS X上的应用程序由MyApp.app/Contents/MacOS/MyApp中以
MyApp.app/Contents/MacOS/MyApp
#!/bin/bash
并且Info.plist中的引用为:
Info.plist
<key>CFBundleExecutable</key> <string>MyApp</string>
从GUI启动应用程序(例如双击Finder),使用与在终端内启动相同脚本时不同的环境变量启动此脚本。
我们可以做些什么来获得相同的环境,例如在.profile?
.profile