One-liner for removing *ALL* ZFS snapshots May 8, 2014 by Anders Jensen-Waud Desparately needed this one after tinkering with a ZFS rolling backup script: sudo zfs list -H -o name -t snapshot | xargs -n1 zfs destroy Note: This will remove ALL snapshots. Use at your own risk. 00