Forrest logo
back to the chromium tool

chromium:tldr:baf5a

chromium: Open in a new window.
$ chromium --new-window ${example-com}
try on your machine

The command chromium --new-window ${example-com} is used to open a new window in the Chromium web browser with a specific URL.

Here is a breakdown of the command:

  • chromium: This is the command to invoke the Chromium web browser.

  • --new-window: This is an option/flag that tells Chromium to open a new window instead of reusing an existing one.

  • ${example-com}: This is a placeholder for the URL of the website you want to open in the new window. You would replace ${example-com} with the actual URL, such as https://www.example.com.

Overall, this command is used to launch Chromium and open a new window with the specified website.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the chromium tool