Skip to content

Instantly share code, notes, and snippets.

@heywoodlh
Last active November 29, 2017 18:09
Show Gist options
  • Save heywoodlh/9d6a92c723d64e74c605882e1a3450db to your computer and use it in GitHub Desktop.
Save heywoodlh/9d6a92c723d64e74c605882e1a3450db to your computer and use it in GitHub Desktop.
Delete all Chrome cache/cookies for every user on OS X
#!/usr/bin/env bash
USERS="$(ls /Users)"
#echo "$USERS"
for user in "$USERS"
do
CHROME_COOKIES="/Users/$user/Library/Application Support/Google/Chrome/Default/Cookies"
if [ -f "$CHROME_COOKIES" ]
then
echo "$CHROME_COOKIES deleted"
rm "$CHROME_COOKIES"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment