📄 wlan-graphs
字号:
#!/bin/tcsh#if ( $#argv < 1 ) then echo usage: echo " " $0 \<scenario\> \[\<flow name\> = Flow_id\] ... exit 1endifset scenario = $1shiftset latfile = $scenario.lat.gnuplotset bwfile = $scenario.bw.gnuplotset latdistfile = $scenario.latdist.gnuplotrm -f $latfile $bwfile $latdistfile# if a title file doesn't existtouch $scenario.titleegrep "^Flow|^Latency Max|^Latency Mean|^Latency Std Dev" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario lat $* > $latfilegnuplot $latfileegrep "^Flow|^No|^Total B|^Max B" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario bw $* > $bwfilegnuplot $bwfileegrep "^Flow" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario latdist $* > $latdistfilegnuplot $latdistfile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -