lib/scripts/fileident
author urbanc
Fri, 14 Sep 2007 13:32:07 +0200
changeset 24572 7be5353ec4bd
parent 23838 d2a8f1544bc9
child 29145 b1c6f4563df7
permissions -rwxr-xr-x
reverted back to the old version of the equivariance lemma for ALL

#!/usr/bin/env bash
#
# $Id$
#
# fileident --- produce file identification based

FILE="$1"

if [ -n "$ISABELLE_FILE_IDENT" -a -f "$FILE" -a -r "$FILE" ]
then
  ID=$(cat "$FILE" | $ISABELLE_FILE_IDENT | cut -d " " -f 1) && echo -n "$ID"
fi