lib/scripts/fileident
author chaieb
Thu, 26 Jul 2007 21:49:51 +0200
changeset 23994 3ddc90d1eda1
parent 23838 d2a8f1544bc9
child 29145 b1c6f4563df7
permissions -rwxr-xr-x
removed redundant ilcm_dvd1 ilcm_dvd2 zvdd_abs1

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