DEV Community

なないろプロジェクト
なないろプロジェクト

Posted on

Open chrome from terminal in mac

Just write a code below in terminal.

open -a "Google Chrome" https://dev.to/t/productivity

If you set an alias as below

alias chrome='open -a "Google Chrome"'

you can also open

chrome https://dev.to/t/productivity

Simple tips.

Top comments (0)