Forrest logo
back to the chromium tool

chromium:tldr:48d93

chromium: Open in incognito mode.
$ chromium --incognito ${example-com}
try on your machine

This command is used to open a Chromium web browser window in incognito mode and navigate to the website with the domain "example-com".

Here's a breakdown of the command:

  • "chromium" is the executable name for the Chromium web browser.
  • "--incognito" is an argument or option that tells Chromium to open in incognito mode. In incognito mode, the browser does not save browsing history, cookies, or site data.
  • "${example-com}" is a placeholder for the website's domain. You're expected to substitute this placeholder with the actual domain name you want to visit. For example, if you want to visit "example.com", you should replace "${example-com}" with "example.com" in the command.

So, when you execute this command, Chromium will open a new incognito window and navigate to the website specified by the domain you filled in.

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