mirror of
https://github.com/eth-p/bat-extras.git
synced 2024-12-13 09:40:42 +01: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"
|