aboutsummaryrefslogtreecommitdiffstats
path: root/zdest.pl
blob: b49a1b96709272ea539a354c09855ddaeb90d3ef (plain)
1
2
3
4
5
6
7
#!/usr/bin/env perl

while (<>) {
	my ($fs) = split /\s+/;
	print "Destroying $fs\n";
	system "zfs destroy $fs";
}