📄 gnuplotb.com
字号:
# csh figure2B.com temp2.rands testnameset filename=$1set filename3=$2cp $filename tempset label='"flow' rm -rf flow1 flow2 flow3 flow4 flow5awk '{if ($1~/'$label'/) yes=yes+1; \ if(yes==1&&NF==2&&$1!~/'$label'/){print $1, $2;}}' temp > flow1awk '{if ($1~/'$label'/) yes=yes+1; \ if(yes==2&&NF==2&&$1!~/'$label'/){print $1, $2;}}' temp > flow2awk '{if ($1~/'$label'/) yes=yes+1; \ if(yes==3&&NF==2&&$1!~/'$label'/){print $1, $2;}}' temp > flow3awk '{if ($1~/'$label'/) yes=yes+1; \ if(yes==4&&NF==2&&$1!~/'$label'/){print $1, $2;}}' temp > flow4awk '{if ($1~/'$label'/) yes=yes+1; \ if(yes==5&&NF==2&&$1!~/'$label'/){print $1, $2;}}' temp > flow5gnuplot << !set terminal postscript epsset xlabel "Time"set ylabel "Rate"set title "$filename3"set output "$filename3.B.ps"set key right box# set size 0.6,0.8# set size 2,3plot "flow1" with lines, "flow2" with lines, "flow3" with lines, "flow4" with lines, "flow5" with linesreplot!
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -