Recursive removal of ZFS snapshots
Recursive removal of ZFS snapshots for given volume: #!/bin/bash if [ “$1” == “” ]; then echo “You need to specify volume name, all snapshots will be recursively removed” exit 1 fi snapshots=`zfs list -H -o name -t snapshot -r $1`… Continue Reading