xref: /freebsd/sys/contrib/openzfs/cmd/zpool/zpool.d/upath (revision 2f7b0de1de4749e24608fc89a2db63e723c253d2)
1#!/bin/sh
2if [ "$1" = "-h" ] ; then
3	echo "Show the underlying path for a device."
4	exit
5fi
6
7# shellcheck disable=SC2154
8echo upath="$VDEV_UPATH"
9