嘿家伙有没有办法在chrome或任何其他使用终端的浏览器中运行php文件。如果我运行我的php文件,它会自动在我的默认浏览器上运行,但我只想在不同的浏览器上使用终端运行(Mac OS )。
答案 0 :(得分:0)
使用“open”命令并使用“-a application”标志指定其他浏览器。
open -a /path/to/Chrome/binary yourfile.php
“打开”的手册页为here。
当然,您也可以为其创建别名以节省输入:
alias chrome="open -a /path/to/Chrome/binary yourfile.php"
然后你可以输入
chrome
如果Chrome二进制文件的路径中有空格,则在定义别名时需要将其转义,如下所示:
alias chrome="open -a \"/Applications/Google Chrome.app/contents/MacOS/Google Chrome\" yourfile.php"