Ask Your Question
0

Is there anyway to export column data into a csv?

asked 2020-06-15 16:50:52 +0000

ahong gravatar image

updated 2020-06-15 21:24:02 +0000

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

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-06-15 17:29:10 +0000

Chuckc gravatar image
$ 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"
edit flag offensive delete link more

Comments

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

grahamb gravatar imagegrahamb ( 2020-06-15 17:33:01 +0000 )edit

Check this question to format date/time as needed.

Chuckc gravatar imageChuckc ( 2020-06-15 21:42:30 +0000 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2020-06-15 16:50:52 +0000

Seen: 259 times

Last updated: Jun 15 '20