home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume32
/
gaps
/
part01
/
lastver
< prev
next >
Wrap
Text File
|
1992-09-20
|
286b
|
13 lines
#!/bin/sh
# GAPS version 4.0
# get and put system - by Nadav Har'El
# lastver: find the name of the last version in history
case $# in
1) case $1 in
*.H) HIST=$1;;
*) HIST=$1.H
esac
awk -F\^ '/^@@\^/ {print $2; exit}' <$HIST;;
*) echo 'Usage: lastver file' 1>&2; exit 1 ;;
esac