xref: /freebsd-src/sys/contrib/openzfs/cmd/zpool/zpool.d/upath (revision d49ad20625283a78649d9ea237bc50c390d80cf1)
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