跟踪文件上的列过滤
我正在对从 ns-2 生成的跟踪文件进行可视化分析,该文件跟踪在模拟的各个时间发送/接收/丢弃的数据包,
这里是示例跟踪输出 - http://pastebin.com/aPm3EFax
我想在将其分别分组到S/D/R后过滤掉column1,以便我可以将其分别求和找到数据包传输分数。
我不知道如何完成这件事? (也许有一些 awk/python 帮助?)
更新:好的,我这样做了 -
cut -d' ' -f1 wireless-out.tr | grep <x> | wc -l
其中
是 s
或 r
或 <代码>D
I am doing visualization analysis on a trace file I generate from ns-2 that traces out the packets sent/received/dropped at various times of the simulation
here is a sample trace output - http://pastebin.com/aPm3EFax
I want to filter out the column1 after grouping it into S/D/R separately, so that I can sum it over to separately to find packet delivery fraction.
I am clueless on how to get this done? (maybe some awk/python help?)
UPDATE: okay, I did this -
cut -d' ' -f1 wireless-out.tr | grep <x> | wc -l
where <x>
is either s
or r
or D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试一下:
输出:
Give this a try:
Output:
产量:
这接近你想要的形式吗?
yields:
Is this close to the form you want?