It'd be pretty cool to only have snapshots that actually are worth having. Seems fairly easy to implement based on [this thread](https://www.reddit.com/r/zfs/comments/11y5le6/wrote_a_script_that_creates_snapshots_only_if/), e.g. ``` local WRITTEN=$(zfs get -H -o value written "${DATASET}") if [ "${WRITTEN}" != "0" ]; then # take snapshot fi ```
It'd be pretty cool to only have snapshots that actually are worth having. Seems fairly easy to implement based on this thread, e.g.