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.
我有一个非常长的命令行,由 bjam 提供给ar(确切地说是 android ar),而 ar 只是破坏了文件路径并抱怨文件不存在。
有没有办法让 ar 分配更大的命令行缓冲区?
不确定 Android 版本,但许多ar实现(实际上还有许多其他命令)允许您将所有参数放入文件(例如xyz.opt),然后使用类似的东西ar @xyz.opt来完成繁重的工作。
ar
xyz.opt
ar @xyz.opt
这是有效的,因为限制往往不是程序本身,而是通常在构造参数列表的 shell 上。通过将参数放入文件中,您可以有效地绕过该限制。