#!/bin/sh

arg="$1"
node="$2"
case "$arg" in
	-t)
		eval $(/sbin/blkid -o udev "$node")
		echo $ID_FS_TYPE
	;;
	*)
		exit 1
	;;
esac
