Skip to content

Instantly share code, notes, and snippets.

@xd547
Last active November 27, 2018 11:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xd547/a7f9b040c90a43840ba0be4ce7a5328a to your computer and use it in GitHub Desktop.
Save xd547/a7f9b040c90a43840ba0be4ce7a5328a to your computer and use it in GitHub Desktop.
Delete all localsnapshots expect last one.
#!/bin/sh
echo 'Delete all local snapshots expect last one.'
for date in $(tmutil listlocalsnapshots / | cut -d. -f4 | sed '$d')
do
tmutil deletelocalsnapshots $date
done
echo 'Thinlocalsnapshots'
tmutil thinlocalsnapshots /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment