mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 00:47:58 +00:00
Add comparison benchmark
This commit is contained in:
parent
33bbf25468
commit
556149ad3a
1 changed files with 23 additions and 0 deletions
23
tests/benchmarks/comparison.sh
Normal file
23
tests/benchmarks/comparison.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
if ! which hyperfine > /dev/null 2>&1; then
|
||||
echo "'hyperfine' does not seem to be installed."
|
||||
echo "You can get it here: https://github.com/sharkdp/hyperfine"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
SRC="test-src/jquery-3.3.1.js"
|
||||
|
||||
|
||||
cmd_bat="bat --style=full --color=always --paging=never '$SRC'"
|
||||
cmd_pygmentize="pygmentize -g '$SRC'"
|
||||
cmd_highlight="highlight -O truecolor '$SRC'"
|
||||
cmd_ccat="ccat --color=always '$SRC'"
|
||||
cmd_source_highlight="source-highlight --failsafe --infer-lang -f esc -i '$SRC'"
|
||||
cmd_hicat="hicat '$SRC'"
|
||||
|
||||
hyperfine --warmup 3 \
|
||||
"$cmd_bat" \
|
||||
"$cmd_pygmentize" \
|
||||
"$cmd_highlight" \
|
||||
"$cmd_ccat" \
|
||||
"$cmd_source_highlight" \
|
||||
"$cmd_hicat" \
|
Loading…
Reference in a new issue