home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume32 / gaps / part01 / lastver < prev    next >
Text File  |  1992-09-20  |  286b  |  13 lines

  1. #!/bin/sh
  2. # GAPS version 4.0
  3. # get and put system - by Nadav Har'El
  4. # lastver: find the name of the last version in history
  5. case $# in
  6. 1)     case $1 in 
  7.     *.H)    HIST=$1;;
  8.     *)    HIST=$1.H
  9.     esac
  10.     awk -F\^ '/^@@\^/ {print $2; exit}' <$HIST;;
  11. *)     echo 'Usage: lastver file' 1>&2; exit 1 ;;
  12. esac 
  13.