Mac OS X: 如何在脚本中获取otool的结果?
Mac OS X: How to get result of otool inside a script?
我想在脚本中更改 dylib 搜索路径。
在终端中,我使用 otool -L my.dylib,然后查看搜索路径是什么并使用 install_name_tool 更改它。
install_name_tool (-change) 使用以前的路径和新路径作为参数。
如何将 otool -L 的结果获取到脚本变量?
How I can get result of otool -L to a script variable?
运行 来自脚本的 otool:
OUTPUT=$(otool -L /Applications/Calculator.app/Contents/MacOS/Calculator)
echo $OUTPUT
我想在脚本中更改 dylib 搜索路径。 在终端中,我使用 otool -L my.dylib,然后查看搜索路径是什么并使用 install_name_tool 更改它。 install_name_tool (-change) 使用以前的路径和新路径作为参数。 如何将 otool -L 的结果获取到脚本变量?
How I can get result of otool -L to a script variable?
运行 来自脚本的 otool:
OUTPUT=$(otool -L /Applications/Calculator.app/Contents/MacOS/Calculator)
echo $OUTPUT