eth-p.bat-extras/test/shimexec/less
2024-08-24 13:45:36 -07:00

22 lines
483 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
FILES=()
while [[ $# -gt 0 ]]; do
-*) : ;;
*) FILES+=("$1")
done
cat "${FILES[@]}"