You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/scripts/pcap_log-converter.sh

14 lines
356 B
Bash

#!/bin/bash
# Check that tshark is installed and return a nice message.
if ! command -v tshark > /dev/null; then
echo "pcap support requires 'tshark' v3+ to be installed" > /dev/stderr
exit 1
fi
# We want tshark output to come in UTC
export TZ=UTC
# Use tshark to convert the pcap file into a JSON-lines log file
exec tshark -T ek -P -V -t ad -r $2