home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 February / VPR9902B.ISO / TurboLinux / instimage / usr / bin / false < prev    next >
Text File  |  1998-10-01  |  395b  |  25 lines

  1. #!/bin/sh
  2.  
  3. usage="Usage: $0 [OPTION]...
  4. Exit unsucessfully.
  5.  
  6.   --help      display this help and exit
  7.   --version   output version information and exit
  8.  
  9. Report bugs to sh-utils-bugs@gnu.ai.mit.edu"
  10.  
  11. case $# in
  12.   1 )
  13.     case "z${1}" in
  14.       z--help )
  15.      echo "$usage"; exit 0 ;;
  16.       z--version )
  17.      echo "false (GNU sh-utils) 1.16"; exit 0 ;;
  18.       * ) ;;
  19.     esac
  20.     ;;
  21.   * ) ;;
  22. esac
  23.  
  24. exit 1
  25.