DEV Community

0xkoji
0xkoji

Posted on

Open a web page from Terminal with Brave Browser

Sometimes I want to open a web page(mostly a GitHub repo) really quickly while I'm writing code.

For doing that, I'm using alias.

alias brave="open -a 'Brave Browser'"
alias portfolio='brave https://github.com/koji/portfolio_nextjs'
Enter fullscreen mode Exit fullscreen mode

Brave Browser
https://brave.com/

When I want to open my portfolio repo.

brave https://github.com/koji/portfolio_nextjs
Enter fullscreen mode Exit fullscreen mode

If you want to use other browsers

alias chrome="open -a 'Google Chrome'" # chrome
alias firefox='open -a Firefox' # firefox
alias safari='open -a Safari' # safari
Enter fullscreen mode Exit fullscreen mode

Top comments (0)