From 2552533a0085ed419e85eb25bcb868be8cd4cb33 Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Sat, 24 Jul 2021 21:13:39 -0700 Subject: [PATCH] escape pipe \| --- documentation/Wireshark/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Wireshark/README.md b/documentation/Wireshark/README.md index 46fb552573..a5f5bed89b 100644 --- a/documentation/Wireshark/README.md +++ b/documentation/Wireshark/README.md @@ -41,7 +41,7 @@ Always use the latest so that operating-system security and feature sets are up 2. Set filter to `(tcp.port == 3000 || udp.port == 3000) && dis` 3. Lauch one of the example programs to send packets, then observe results. -| `udp && dis` | `(tcp.port == 3000 | udp.port == 3000) && dis` | +| `udp && dis` | `(tcp.port == 3000 \|\| udp.port == 3000) && dis` | | ------ | ------ | | <a href="images/WiresharkUdpDisPduCapture1.png"><img src="images/WiresharkUdpDisPduCapture1.png" width="400" align="center"/> | <a href="images/WiresharkUdpDisPduCapture2.png"><img src="images/WiresharkUdpDisPduCapture2.png" width="400" align="center"/> | -- GitLab