aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/mitmdump.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc-src/mitmdump.html')
-rw-r--r--doc-src/mitmdump.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc-src/mitmdump.html b/doc-src/mitmdump.html
index 1ca5a020..4dc0a519 100644
--- a/doc-src/mitmdump.html
+++ b/doc-src/mitmdump.html
@@ -9,7 +9,7 @@ documentation.
## Example: saving traffic
<pre class="terminal">
-mitmdump -w outfile
+> mitmdump -w outfile
</pre>
Start up mitmdump in proxy mode, and write all traffic to __outfile__.
@@ -18,7 +18,7 @@ Start up mitmdump in proxy mode, and write all traffic to __outfile__.
## Example: client replay
<pre class="terminal">
-mitmdump -nc outfile
+> mitmdump -nc outfile
</pre>
Start mitmdump without binding to the proxy port (_-n_), then replay all
@@ -27,7 +27,7 @@ you can replay requests from one file, and write the resulting flows to
another:
<pre class="terminal">
-mitmdump -nc srcfile -w dstfile
+> mitmdump -nc srcfile -w dstfile
</pre>
See the [Client-side Replay](@!urlTo("clientreplay.html")!@) section for more information.
@@ -36,7 +36,7 @@ See the [Client-side Replay](@!urlTo("clientreplay.html")!@) section for more in
## Example: running a script
<pre class="terminal">
-mitmdump -s examples/add_header.py
+> mitmdump -s examples/add_header.py
</pre>
This runs the __add_header.py__ example script, which simply adds a new header
@@ -46,7 +46,7 @@ to all responses.
## Example: scripted data transformation
<pre class="terminal">
-mitmdump -ns examples/add_header.py -r srcfile -w dstfile
+> mitmdump -ns examples/add_header.py -r srcfile -w dstfile
</pre>
This command loads flows from __srcfile__, transforms it according to the