Created
June 4, 2016 23:32
-
-
Save remarkablemark/ec3dd3eb9ecae792bf5b66fdab855070 to your computer and use it in GitHub Desktop.
Script that cleans up iMovie render files.
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # find and delete the `Render Files` directory for each iMovie project to free up space | |
| find ~/Movies/iMovie\ Library.imovielibrary -path "*/Render Files" -type d -exec rm -r {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment