如何通过终端启动 Google Chrome 并让终端返回以执行其他命令?

如何通过终端启动 Google Chrome 并让终端返回以执行其他命令?

如果我使用该命令启动 Chrome google-chrome,那么在 Chrome 实例关闭之前,我无法使用终端进行任何其他操作。

有没有什么办法可以通过命令行打开 Google Chrome,而无需将 Google Chrome 的动态内容加载到终端中,以便我可以使用终端进行其他操作。

答案1

&只需在命令末尾加上一个 & 符号即可启动 Chrome :

google-chrome &

这会将该过程发送到后台并将终端返回给您。

如果 Chrome 输出您不想看到的终端消息,只需将它们发送至/dev/null

google-chrome &>/dev/null &

如果你想关闭在 Chrome 仍在运行时在终端上执行以下指令nohup

nohup google-chrome &

相关内容