lib/scripts/fileident
author wenzelm
Mon, 10 May 2010 22:29:27 +0200
changeset 36789 076eded99ef7
parent 29145 b1c6f4563df7
permissions -rwxr-xr-x
Scala for Netbeans 6.8v1.1.0rc2;

#!/usr/bin/env bash
#
# 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