From 1be346a03858bb5a396acf28be8b47d65d34584e Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 7 Oct 2018 10:57:08 +0200 Subject: [PATCH] Add 'plain' version of bat to the benchmarks --- tests/benchmarks/comparison.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/benchmarks/comparison.sh b/tests/benchmarks/comparison.sh index ed500e18..50438cf4 100644 --- a/tests/benchmarks/comparison.sh +++ b/tests/benchmarks/comparison.sh @@ -10,6 +10,7 @@ SRC="test-src/jquery-3.3.1.js" cmd_bat="bat --style=full --color=always --paging=never '$SRC'" +cmd_bat_simple="bat --plain --wrap=never --tabs=0 --color=always --paging=never '$SRC'" cmd_pygmentize="pygmentize -g '$SRC'" cmd_highlight="highlight -O truecolor '$SRC'" cmd_ccat="ccat --color=always '$SRC'" @@ -20,6 +21,7 @@ cmd_rouge="rougify '$SRC'" hyperfine --warmup 3 \ "$cmd_bat" \ + "$cmd_bat_simple" \ "$cmd_pygmentize" \ "$cmd_highlight" \ "$cmd_ccat" \