lib/scripts/fileident
author wenzelm
Sun, 16 Dec 2007 13:05:53 +0100
changeset 25661 dcee4bb2ba5c
parent 23838 d2a8f1544bc9
child 29145 b1c6f4563df7
permissions -rwxr-xr-x
constructor: allow default logic; kill: refer to "isabelle.kill" system property;

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