To delete a range of ZFS snapshots, use the % (percent) character after thefull path to the first snapshot that should be included. For example, tosimulate deleting snapshots a through (including) d, use this command:# zfs destroy -rvn mypool/tmp@a%dOnce you are sure that this is what you want, remove the -n option:# zfs destroy -rv mypool/tmp@a%d -- Benedict Reuschling <bcr@FreeBSD.org>