From 04fb3de1845504070e233bbdc73775036ec04f40 Mon Sep 17 00:00:00 2001 From: penguinpatroller Date: Tue, 22 Oct 2019 22:56:50 -0400 Subject: [PATCH 1/4] Added initial firefox.md. Still looking to add more information on this command --- reference/static/commands/tools/firefox.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 reference/static/commands/tools/firefox.md diff --git a/reference/static/commands/tools/firefox.md b/reference/static/commands/tools/firefox.md new file mode 100644 index 0000000..d11d817 --- /dev/null +++ b/reference/static/commands/tools/firefox.md @@ -0,0 +1,15 @@ +firefox +--- +`firefox` opens a new firefox window. + +~~~bash +$ firefox +~~~ + +Alternatively, you can open firefox with a website as an argument, to open the website with firefox + +~~~bash +#Open the best website ever +$ firefox https://cspragmatics.com/ref +~~~ + From 4d1bd38bffef37542524d1beb068f573a1a6ee23 Mon Sep 17 00:00:00 2001 From: penguinpatroller Date: Tue, 22 Oct 2019 23:32:15 -0400 Subject: [PATCH 2/4] Added firefox information. Checking to make sure all commands work --- reference/static/commands/tools/firefox.md | 61 ++++++++++++++++++++-- 1 file changed, 58 insertions(+), 3 deletions(-) diff --git a/reference/static/commands/tools/firefox.md b/reference/static/commands/tools/firefox.md index d11d817..db7b7c5 100644 --- a/reference/static/commands/tools/firefox.md +++ b/reference/static/commands/tools/firefox.md @@ -1,15 +1,70 @@ firefox --- -`firefox` opens a new firefox window. + + +`firefox` opens a new firefox window. Firefox is a free open source web browser. ~~~bash $ firefox ~~~ -Alternatively, you can open firefox with a website as an argument, to open the website with firefox +--- + +##Basic Usage +`$ firefox` +--- + +###Useful Options / Examples + + +#### `firefox ` ~~~bash #Open the best website ever -$ firefox https://cspragmatics.com/ref +$ firefox https://cspragmatics/ref +~~~ + +Opens the website using firefox. + + +#### `firefox -new-tab ` + +~~~bash +$ firefox -new-tab www.google.com +~~~ + +Open url in a new tab. + +#### `firefox -new-window ` + +~~~bash +$ firefox -new-window www.google.com +~~~ + +Open url in a new window. + +#### `firefox -private` + +~~~bash +$ firefox -private +~~~ + +Start firefox in private browsing mode. + +#### `firefox -safe-mode` + +~~~bash +$ firefox -safe-mode ~~~ +Start firefox in safe mode. Disables all third party extensions. Useful if extension breaks browser or you're having trouble with an extension. + + +#### `firefox -search term` + +~~~bash +$ firefox -search penguinpatroller +~~~ + +Search for term with default search engine. + From 8541e9c0f521b3436b4c5f3d42278153bb693046 Mon Sep 17 00:00:00 2001 From: penguinpatroller Date: Tue, 22 Oct 2019 23:33:23 -0400 Subject: [PATCH 3/4] Good thing I checked, cuz -search did not work. Will come back to that --- reference/static/commands/tools/firefox.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/reference/static/commands/tools/firefox.md b/reference/static/commands/tools/firefox.md index db7b7c5..93cdd8f 100644 --- a/reference/static/commands/tools/firefox.md +++ b/reference/static/commands/tools/firefox.md @@ -60,11 +60,4 @@ $ firefox -safe-mode Start firefox in safe mode. Disables all third party extensions. Useful if extension breaks browser or you're having trouble with an extension. -#### `firefox -search term` - -~~~bash -$ firefox -search penguinpatroller -~~~ - -Search for term with default search engine. From f20d25823f0cc23530c68bc3782807b345506511 Mon Sep 17 00:00:00 2001 From: penguinpatroller Date: Tue, 22 Oct 2019 23:34:52 -0400 Subject: [PATCH 4/4] Fixed markup language line error --- reference/static/commands/tools/firefox.md | 1 + 1 file changed, 1 insertion(+) diff --git a/reference/static/commands/tools/firefox.md b/reference/static/commands/tools/firefox.md index 93cdd8f..e8b39db 100644 --- a/reference/static/commands/tools/firefox.md +++ b/reference/static/commands/tools/firefox.md @@ -12,6 +12,7 @@ $ firefox ##Basic Usage `$ firefox` + --- ###Useful Options / Examples