wireshark/packaging/macosx/utility-launcher

20 lines
431 B
Bash
Executable File

#!/bin/sh
#
# $Id$
#
# Wireshark CLI utility launcher
if [ -z "$WIRESHARK_APP_DIR" ] ; then
WIRESHARK_APP_DIR="/Applications/Wireshark.app"
fi
if [ ! -d "$WIRESHARK_APP_DIR" ] ; then
echo "Wireshark doesn't appear to be located at $WIRESHARK_APP_DIR."
echo "Please set WIRESHARK_APP_DIR to its proper location and try again."
exit 1
fi
APPNAME=`basename "$0"`
exec "$WIRESHARK_APP_DIR/Contents/Resources/bin/$APPNAME" "$@"