#!/bin/csh -f 
if (! -e $1) then
    echo $1 not found
    exit
endif
set version = `strings $1 | sed -e 's/^0[0-9]*//'|grep 'SPRITE VERSION' | awk '{print $3}'`
echo $version
