在 Windows 中,您可以从 Shell 中输入“start”来打开另一个 Shell 实例。OS X 中的等效命令是什么?
答案1
⌘N(Command+N)。
对于 的其他用途start
,要使用相关应用程序打开任意文件,请open
在 OS X 上使用。
答案2
从 Finder 到以下内容:
- Finder -> 应用程序 -> 实用程序 -> 终端(这将打开终端应用程序)。
- 打开新的终端窗口 ⌘N (Command +N)
- 在现有窗口内打开新选项卡 ⌘T (Command+T)
答案3
类型
open /Applications/Utilities/Terminal.app
答案4
以下是启动命令(在我的情况tail
下是日志文件)并使其保持运行的方法:
echo "tail -n 70 -f /tmp/livy.log" >> /tmp/xyz && chmod u+x /tmp/xyz && open -a /Applications/utilities/Terminal.app /tmp/xyz
我认为可以做类似的事情来保持通用的 bash 提示符 - 类似于bash -c <some command>