# macOS - Time Machine
## Delete All Local Snapshots
```bash
for d in $(tmutil listlocalsnapshotdates | grep "-"); do
sudo tmutil deletelocalsnapshots "$d"
done
```
Useful when snapshots consume significant disk space. Check current snapshots with `tmutil listlocalsnapshotdates`.
[Source](https://apple.stackexchange.com/a/340906/350383)