mirror of
https://github.com/eth-p/bat-extras.git
synced 2024-11-08 00:34:22 +01:00
16 lines
399 B
Bash
Executable File
16 lines
399 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [[ "$1" = "--version" ]]; then
|
|
cat <<EOF
|
|
less ${MOCK_LESS_VERSION:-551} (PCRE regular expressions)
|
|
Copyright (C) 1984-2019 Mark Nudelman
|
|
|
|
less comes with NO WARRANTY, to the extent permitted by law.
|
|
For information about the terms of redistribution,
|
|
see the file named README in the less distribution.
|
|
Home page: http://www.greenwoodsoftware.com/less
|
|
EOF
|
|
exit 0
|
|
fi
|
|
|
|
cat "$1"
|