blob: fc69c118333df4c58629702a415d72162a1eec7c [file] [log] [blame]
#!/bin/sh
if [ -r $1 ]
then
read k <$1
echo $k
else
echo "unknown"
fi
exit 0