mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
7 lines
234 B
Plaintext
7 lines
234 B
Plaintext
|
# -*- mode: shell-script -*-
|
||
|
function get_old_datasets()
|
||
|
{
|
||
|
dataset="$1"
|
||
|
zfs list "$dataset" -t filesystem -r -H -o name | xargs -I {} ${final.runtimeShell} -c 'echo "$1" | rev | cut -f 1 -d "/" | rev' sh {} | grep -v "$dataset"
|
||
|
}
|