Skip to content

Instantly share code, notes, and snippets.

@estahn
Created October 3, 2013 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estahn/6808707 to your computer and use it in GitHub Desktop.
Save estahn/6808707 to your computer and use it in GitHub Desktop.
Free up disk space by deleting older Google Chrome versions
#!/bin/bash
current=`find /Applications/Google\ Chrome.app/Contents/Versions -maxdepth 1 -type d -name "*.*.*.*" | sort | tail -1 | xargs -I% basename %`
echo Deleting old Chrome versions and keep $current
find /Applications/Google\ Chrome.app/Contents/Versions -maxdepth 1 -type d -name "*.*.*.*" -not -iname "$current" -exec rm -rf {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment