To list all of your current snapshots;
zfs list -t snapshot
This is a handy script to remove all snapshots….
for snapshot in `zfs list -H -t snapshot | cut -f 1`
do
zfs destroy $snapshot
done
As always : at your own risk. ;)
Daz's bits and bobs …bytes bits
To list all of your current snapshots;
zfs list -t snapshot
This is a handy script to remove all snapshots….
for snapshot in `zfs list -H -t snapshot | cut -f 1`
do
zfs destroy $snapshot
done
As always : at your own risk. ;)