Omnipeek安装目录下有个 bin,下面有个peekcat
可以执行并且合并,使用命令行
Usage 1: peekcat file1 file2 [newfile]
Appends file2 to file1 or creates newfile if specified.
EXAMPLE 1a: peekcat trace1.pkt trace2.pkt
File trace2.pkt is appended to the end of trace1.pkt.
EXAMPLE 1b: peekcat trace1.pkt trace2.pkt trace3.pkt
Combines trace1.pkt and trace2.pkt into trace3.pkt:
=======================================
Usage 2: PEEKCAT /m source.txt newfile
Concatenates all .pkt files listed in source.txt and outputs
to newfile. source.txt is a text file with each file listed
on a single line. dir /b *.pkt > source.txt is one way to
produce this file.
Options: /s : merge sort the packets by timestamp (slower)
/e : eliminate duplicates when sorting
EXAMPLE 2: peekcat /m source.txt newfile.pkt
Combines 1.pkt, 2.pkt, 3.pkt, and 4.pkt into newfile.pkt.
Source.txt contains the following text:
1.pkt
2.pkt
3.pkt
4.pkt