First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

Is there anyway to export column data into a csv?

  • retag add tags

I put the RSSI and absolute date in display columns in wireshark, but is there anyway to export this column data using tshark?

ahong's avatar
1
ahong
asked 2020-06-15 16:50:52 +0000, updated 2020-06-15 21:24:02 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0
$ tshark -r ./*pcap -T fields -e _ws.col.Time -e wlan_radio.signal_dbm -E separator=, -E quote=d 
"0.000000","-25"
"0.102410","-25"
"0.205062","-25"
"0.264959","-44"
"0.268065","-44"
Chuckc's avatar
3k
Chuckc
answered 2020-06-15 17:29:10 +0000
edit flag offensive 0 remove flag delete link

Comments

Depending on the shell used, you may need to quote the -E args, e.g. -E 'separator=,'.

grahamb's avatar grahamb (2020-06-15 17:33:01 +0000) edit

Check this question to format date/time as needed.

Chuckc's avatar Chuckc (2020-06-15 21:42:30 +0000) edit
add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer