lib/scripts/fileident
author wenzelm
Tue, 17 Jul 2007 22:51:27 +0200
changeset 23838 d2a8f1544bc9
child 29145 b1c6f4563df7
permissions -rwxr-xr-x
fileident --- produce file identification based;
     1 #!/usr/bin/env bash
     2 #
     3 # $Id$
     4 #
     5 # fileident --- produce file identification based
     6 
     7 FILE="$1"
     8 
     9 if [ -n "$ISABELLE_FILE_IDENT" -a -f "$FILE" -a -r "$FILE" ]
    10 then
    11   ID=$(cat "$FILE" | $ISABELLE_FILE_IDENT | cut -d " " -f 1) && echo -n "$ID"
    12 fi