home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gwm18a.zip / contrib / gwmsh / rcshead < prev    next >
Text File  |  1995-07-03  |  214b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # Usage:
  4. #       rcshead file
  5. #
  6. #  Prints head revision number of the specified file.
  7. #
  8.  
  9. if [ x"$1" = x ]; then
  10.         echo usage: rschead file 1>&2
  11.         exit 1
  12. fi
  13.  
  14. rlog $1 | sed -n 's/^head: *//p'
  15.