Created
October 2, 2012 03:36
-
-
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
This file contains 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
#!/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