mirror of
https://github.com/eth-p/bat-extras.git
synced 2024-12-13 17:50:56 +01:00
11 lines
153 B
Plaintext
11 lines
153 B
Plaintext
|
#!/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"
|