lib/scripts/fileident
author wenzelm
Wed, 28 Oct 2009 23:21:45 +0100
changeset 33295 ce8faf41b0d4
parent 29145 b1c6f4563df7
permissions -rwxr-xr-x
proper nested quotes; give up unposixly < <(...) for now -- it needs to be exportable through the global environment (e.g. via make or sh);

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