mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
6 lines
302 B
Bash
Executable file
6 lines
302 B
Bash
Executable file
#!/bin/sh
|
|
|
|
experiments=`mlr cut -f experiment < tn.out|sort -u|sed 's/experiment=//'`
|
|
for experiment in $experiments; do
|
|
mlr --onidx --ofs ' ' filter '$experiment=="'$experiment'"' then cut -x -f experiment tn.out | pgr -nc -title $experiment -xlabel nlines -ylabel seconds -legend 'a b' -lop &
|
|
done
|