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.
在 Ubuntu 上精确
我正在调用“dpkg -q --commit ./patchsetname”
当我这样做时,它决定使用选择编辑器二进制文件打开一个编辑器。
我想压制它。有什么想法吗?
我宁愿不必用共享库中断 exec 系统调用并过滤编辑器查询。应该有一种更清洁的方法来做到这一点。
我刚刚用以下方法解决了这个问题:
EDITOR=/bin/true dpkg-source -q --commit . patchsetname
这将(显然)使用true而不是nano并且至少在 kubuntu 上这似乎工作正常。
true
nano