Skip to content

Instantly share code, notes, and snippets.

@nikcub
Created October 2, 2012 03:36
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 nikcub/3816007 to your computer and use it in GitHub Desktop.
Save nikcub/3816007 to your computer and use it in GitHub Desktop.
One-line shell script to clear all Google Analytics cookies from Chrome on OS X
#!/bin/bash
#
# shell script will clear all google analytics cookies from chrome cookie store
#
SQ3=`which sqlite3`
$SQ3 ~/Library/Application\ Support/Google/Chrome/Default/Cookies "delete from cookies where name like '__u%'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment