Created
December 4, 2016 17:51
-
-
Save sach1t/cbf6bd73eace80b09a75afeaaa6c8690 to your computer and use it in GitHub Desktop.
Chrome Bookmark De-Duplicator
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
# 1. export bookmarks | |
# 2. awk -f cbdd.awk bookmarks_12_4_16.html > uniq.html | |
# 3. import uniq.html | |
BEGIN { FS = " " } | |
$2 ~ /^HREF/ { | |
if (!($2 in seen)) { | |
seen[$2] | |
print $0 | |
} | |
next | |
} | |
{ | |
print $0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment