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.
我想通过脚本在 mac 的终端中打开一个选项卡,然后在该脚本在原始终端选项卡中运行时运行一个进程。我可以这样做吗?
这取决于您是否正在运行 GUI。但是,无论哪种方式,您都可以通过在命令末尾添加“&”来告诉进程在后台运行。例如:user$ ./myexecutable &这将运行可执行文件“myexecutable”,但仍允许您向终端输入其他命令。
user$ ./myexecutable &
我认为 Control+Shift+T 应该这样做。
'<code>tfork' 脚本总是打开一个新终端