Created
February 27, 2018 13:56
-
-
Save therod/d1431596b18b0dc905123c75065aa3e4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Remove all local timemachine backups | |
for i in $(tmutil listlocalsnapshotdates / | awk '{print $1}' | sed -n '1!p' | xargs echo); do tmutil deletelocalsnapshots $i; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment