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.
我想在.gdbinit中为 gdb 编写一个子进程。所以我需要一些测试,比如isfile,exists或-e. 是否有任何内置函数或任何其他方法来实现它?
isfile
exists
-e
不,没有那样的东西。
您可以使用“shell”来调用 shell 脚本,也可以使用“python”命令来评估 Python 代码。