Skip to content

Instantly share code, notes, and snippets.

@lalitkale
Forked from sach1t/cbdd.awk
Created March 2, 2021 14:46
Show Gist options
  • Save lalitkale/b36783a88f11e1ee3595211a3e57af86 to your computer and use it in GitHub Desktop.
Save lalitkale/b36783a88f11e1ee3595211a3e57af86 to your computer and use it in GitHub Desktop.
Chrome Bookmark De-Duplicator
# 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