Skip to content

Instantly share code, notes, and snippets.

@daz
Last active February 22, 2016 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save daz/61b7f94a6244df373909 to your computer and use it in GitHub Desktop.
Save daz/61b7f94a6244df373909 to your computer and use it in GitHub Desktop.
Nuke URL from Chrome history on OS X
osascript -e 'quit app "Google Chrome"'
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History "select url from urls where url like '%url_to_nuke%';"
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History "delete from urls where url like '%url_to_nuke%';"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment