Answers:
您可以使用带有标志的open命令-a
在Chrome中打开文件或位置:
open -a "Google Chrome" index.html
这也适用于网址(即) open -a "Google Chrome" http://www.apple.com
。
open -a "Google Chrome" *.html
所有匹配的html
文件作为新标签页打开
我发现这种方式更美丽:
~/.bash_profile
文件并添加以下行
alias chrome="open -a 'Google Chrome'"
source ~/.bash_profile
在终端中运行或打开一个新窗口。现在,您可以通过chrome file.html
在命令行上运行:打开文件file.html 。
从脚本或某些自动化工具中使用它时,我更喜欢为完整的二进制文件加上别名,这样我就可以访问所有命令行选项(如--version
...)
alias chrome="/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
chrome --version
chrome -open index.html
然后,如果您希望永久拥有此别名,则可以将其.bash_profile
手动添加或使用以下小片段:
echo "alias chrome=\"/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"\" >> ~/.bash_profile