Last active
February 22, 2016 06:42
-
-
Save daz/61b7f94a6244df373909 to your computer and use it in GitHub Desktop.
Nuke URL from Chrome history on OS X
This file contains hidden or 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
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