0.559611 | 559611us | tsft | 24.0 | Mb/s | 5005 | MHz | 11a | IP | 192.168.1.2.49153 | > | 192.168.1.1.12345: | UDP, |
Hi,a quick google search gives an example of how you can convert pcaps to text file
one of which washttp://blog.scorviafoundation.org/2012/12/09/and-the-story-begin/operating-system/how-to-convert-pcap-file-into-text/
Now, if you want only to get the first and fourth element of each line, you can use a script to get thate.g. in awk script assuming that the original.txt file was the one with the full line after the pcap conversion, and clean.txt has only the first and fourth element:awk '{ print $1 $4 "\n" } END{}' original.txt >> clean.txt