diff --git a/scripts/ci-run-benchmarks.sh b/scripts/ci-run-benchmarks.sh index 072c1024..5102c6b4 100755 --- a/scripts/ci-run-benchmarks.sh +++ b/scripts/ci-run-benchmarks.sh @@ -114,9 +114,9 @@ for TOOL in zsv xsv tsv; do if [ "$TOOL" = "zsv" ]; then CMD="$TOOLS_DIR/zsv count" elif [ "$TOOL" = "xsv" ]; then - CMD="$TOOLS_DIR/xsv count" + CMD="$TOOLS_DIR/xsv count --no-headers" elif [ "$TOOL" = "tsv" ]; then - CMD="$TOOLS_DIR/number-lines -d," + CMD="$TOOLS_DIR/tsv-summarize --count -d," fi I=0 @@ -141,7 +141,7 @@ for TOOL in zsv xsv tsv; do elif [ "$TOOL" = "xsv" ]; then CMD="$TOOLS_DIR/xsv select 2,1,3-7" elif [ "$TOOL" = "tsv" ]; then - CMD="$TOOLS_DIR/tsv-select -d, -f 1-7" + CMD="$TOOLS_DIR/tsv-select -d, -f 2,1,3-7" fi I=0