From 0a814a5e50febd19ea9ed5c7c30d41084758cb4f Mon Sep 17 00:00:00 2001 From: idk Date: Sat, 27 Aug 2022 14:46:25 -0400 Subject: [PATCH] update USAGE.html --- USAGE.html | 41 ++++++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 13 deletions(-) diff --git a/USAGE.html b/USAGE.html index 2886706..44dc90c 100644 --- a/USAGE.html +++ b/USAGE.html @@ -96,6 +96,9 @@

+ + + Example Commands:

@@ -105,7 +108,7 @@ The top command is for Unixes and should work on most POSIX shells. After it runs, the script will terminate preventing Windows commands from running.

- The second and third command is for Windows and won’t be reachable on Linux(because the top command will be run and the script will exit). + The second and third command is for Windows and won't be reachable on Linux(because the top command will be run and the script will exit).

Both determine the path to the script, use it to find the jar file, and execute a single command. @@ -113,45 +116,57 @@

Auto-Select in Persistent Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser
-
+
+

Auto-Select in Private Browsing Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser -private; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser -private; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PBrowser -private
-
+
+

Firefox in Persistent Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox
-
+
+

Firefox in Private Browsing Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox -private; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox -private; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox -private
-
+
+

Chromium in Persistent Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium
-
+
+

Chromium in Private Browsing Mode

-
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium -private; exit $?
+    
+
:; dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd); java -cp "$dir"/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium -private; exit $?
 @ECHO OFF
 java -cp %cd%/src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PChromium -private
-
+
+
Show license