Home > database >  How do I set up an alias for the terminal command 'chromium-browser'?
How do I set up an alias for the terminal command 'chromium-browser'?

Time:11-09

At the moment, to test my webpage, I run the terminal command: chromium-browser index.html What are some more efficient alternatives?

Chromium Projects shows the following:

Chromium Projects resource

CodePudding user response:

Yes, as you suggest in the title, you can setup an alias:

alias cbi='chromium-browser index.html'

Then, next time, just type cbi.

  • Related