1 | initial version |
The use of tshark is described in the User Guide and the tshark man page.
Basically use tshark to read in each file and output to csv with a command similar to the following:
tshark -r infile -T fields -E "separator=," -E "quote=d"
Adjusting the separator and quoting arguments as required.
2 | No.2 Revision |
The use of tshark is described in the User Guide and the tshark man page.
Basically use tshark to read in each file and output to csv with a command similar to the following:
tshark -r infile -T fields tabs -E "separator=," -E "quote=d"
Adjusting the separator and quoting arguments as required.
Edit: Fixed typo for the -T
option from fields
to tabs