3 lines
115 B
Bash
3 lines
115 B
Bash
|
#!/bin/bash
|
||
|
zfs get -Ht snapshot userrefs | grep -v $'\t'0 | cut -d $'\t' -f 1 | tr '\n' '\0' | xargs -0 zfs holds
|