mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-24 16:53:55 +01:00
Move comparison.sh benchmark script to documentation
This commit is contained in:
parent
5519f9c716
commit
1822c981da
@ -22,3 +22,42 @@ request.
|
|||||||
Some other alternatives that are also related, but not yet included in the table:
|
Some other alternatives that are also related, but not yet included in the table:
|
||||||
- [lesspipe](https://github.com/wofr06/lesspipe)
|
- [lesspipe](https://github.com/wofr06/lesspipe)
|
||||||
- [vimpager](https://github.com/rkitover/vimpager)
|
- [vimpager](https://github.com/rkitover/vimpager)
|
||||||
|
|
||||||
|
## Benchmarks
|
||||||
|
|
||||||
|
The benchmarks above have been created with this script:
|
||||||
|
```bash
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
cd "$(dirname "${BASH_SOURCE[0]}")" || exit
|
||||||
|
|
||||||
|
if ! command -v 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_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'"
|
||||||
|
cmd_source_highlight="source-highlight --failsafe --infer-lang -f esc -i '$SRC'"
|
||||||
|
cmd_hicat="hicat '$SRC'"
|
||||||
|
cmd_coderay="coderay '$SRC'"
|
||||||
|
cmd_rouge="rougify '$SRC'"
|
||||||
|
|
||||||
|
hyperfine --warmup 3 \
|
||||||
|
"$cmd_bat" \
|
||||||
|
"$cmd_bat_simple" \
|
||||||
|
"$cmd_pygmentize" \
|
||||||
|
"$cmd_highlight" \
|
||||||
|
"$cmd_ccat" \
|
||||||
|
"$cmd_source_highlight" \
|
||||||
|
"$cmd_hicat" \
|
||||||
|
"$cmd_coderay" \
|
||||||
|
"$cmd_rouge" \
|
||||||
|
```
|
||||||
|
33
tests/benchmarks/comparison.sh
vendored
33
tests/benchmarks/comparison.sh
vendored
@ -1,33 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
cd "$(dirname "${BASH_SOURCE[0]}")" || exit
|
|
||||||
|
|
||||||
if ! command -v 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_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'"
|
|
||||||
cmd_source_highlight="source-highlight --failsafe --infer-lang -f esc -i '$SRC'"
|
|
||||||
cmd_hicat="hicat '$SRC'"
|
|
||||||
cmd_coderay="coderay '$SRC'"
|
|
||||||
cmd_rouge="rougify '$SRC'"
|
|
||||||
|
|
||||||
hyperfine --warmup 3 \
|
|
||||||
"$cmd_bat" \
|
|
||||||
"$cmd_bat_simple" \
|
|
||||||
"$cmd_pygmentize" \
|
|
||||||
"$cmd_highlight" \
|
|
||||||
"$cmd_ccat" \
|
|
||||||
"$cmd_source_highlight" \
|
|
||||||
"$cmd_hicat" \
|
|
||||||
"$cmd_coderay" \
|
|
||||||
"$cmd_rouge" \
|
|
Loading…
Reference in New Issue
Block a user