snippetbashTip
firefox — A free and open source web browser. More information: <https://wiki.mozilla.org/Firefox/CommandLineO
Viewed 0 times
firefoxcommandandsourcecliopenfreeweb
Problem
How to use the
firefox command: A free and open source web browser. More information: <https://wiki.mozilla.org/Firefox/CommandLineOptions>.Solution
firefox — A free and open source web browser. More information: <https://wiki.mozilla.org/Firefox/CommandLineOptions>.Launch Firefox and open a web page:
firefox {{https://www.duckduckgo.com}}Open a new window:
firefox --new-window {{https://www.duckduckgo.com}}Open a private (incognito) window:
firefox --private-windowSearch for "wikipedia" using the default search engine:
firefox --search "{{wikipedia}}"Launch Firefox in safe mode, with all extensions disabled:
firefox --safe-modeTake a screenshot of a web page in headless mode:
firefox --headless --screenshot {{path/to/output_file.png}} {{https://example.com/}}Use a specific profile to allow multiple separate instances of Firefox to run at once:
firefox --profile {{path/to/directory}} {{https://example.com/}}Set Firefox as the default browser:
firefox --setDefaultBrowserCode Snippets
Launch Firefox and open a web page
firefox {{https://www.duckduckgo.com}}Open a new window
firefox --new-window {{https://www.duckduckgo.com}}Open a private (incognito) window
firefox --private-windowSearch for "wikipedia" using the default search engine
firefox --search "{{wikipedia}}"Launch Firefox in safe mode, with all extensions disabled
firefox --safe-modeContext
tldr-pages: common/firefox
Revisions (0)
No revisions yet.