lib/scripts/fileident
author wenzelm
Wed, 08 Aug 2007 16:40:20 +0200
changeset 24184 19cb051154fd
parent 23838 d2a8f1544bc9
child 29145 b1c6f4563df7
permissions -rwxr-xr-x
thread-safeness: when creating certified items, perform Theory.check_thy *last*; tuned datatype proof;

#!/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