mirror of
https://github.com/eth-p/bat-extras.git
synced 2026-09-11 15:56:26 -04:00
11 lines
153 B
Bash
Executable file
11 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [[ "$1" = "--version" ]]; then
|
|
cat <<EOF
|
|
not less ${MOCK_LESS_VERSION:-551} (PCRE regular expressions)
|
|
:(
|
|
EOF
|
|
exit 0
|
|
fi
|
|
|
|
cat "$1"
|