The "zfs list" command can be filtered in multiple ways. To display just
the dataset name, use the -o parameter:
zfs list -o name mypool/usr
More columns and their order can be defined by separating them with commas:
zfs list -o mountpoint,name,avail
-- Benedict Reuschling <bcr@FreeBSD.org>