#!/bin/sh

usage="Usage: $0 [OPTION]
Exit unsuccessfully.

  --help      display this help and exit
  --version   output version information and exit

Report bugs to <sh-utils-bugs@gnu.org>."

case $# in
  1)
    case "$1" in
      --help)
	 echo "$usage"; exit 0;;
      --version)
	 echo "false (GNU sh-utils) 1.16k"; exit 0;;
      *) ;;
    esac
    ;;
  *) ;;
esac

exit 1
