LoginSignup
0
0

More than 5 years have passed since last update.

ローカルスナップショット削除

Last updated at Posted at 2018-10-17

パージ可能なのに使えないストレージを使えるようにローカルスナップショットを削除

test.php
<?php
$aa=shell_exec("tmutil listlocalsnapshots /");
$aa=explode("\n", $aa);
foreach ($aa as $a) {
if ($a=='') {
continue;
}
$l=explode(".", $a);
$c="tmutil deletelocalsnapshots ".$l[3];
// print $c."
// ";
shell_exec($c);
}
?>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0