在终端中通过远程调试启动 Chrome 的确切命令是什么?

What is the exact command for launching Chrome with remote debugging in Terminal?

我查阅并尝试了几种启动 Chrome 并通过终端进行远程调试的方法,但都没有奏效。我收到错误“没有这样的目录”或找不到命令。我试过:

 chrome --remote-debugging-port=9222 

/Applications/Google\Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222

这些都正确吗?如果不是,正确的命令是什么?

需要一个简单的更改,将 bash shebang 添加到 Chrome 调试器脚本。

#!/bin/bash
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222&