1 | initial version |
Wireshark does not support having multiple capture files open in the same process, so it can't fully function as a standard macOS application.
If Wireshark is installed in /Applications/Wireshark.app
, and you have a small shell script called, for example, "wsopen":
#! /bin/sh
/Applications/Wireshark.app/Contents/MacOS/Wireshark "$@"&
in your $PATH
, you could open multiple files from the command line with wsopen {file path}
. (If there were a Launch Services command-line tool to find the path of an app, that could be made to use the installed path even if it isn't /Applications/Wireshark.app
.)