Skip to content

Instantly share code, notes, and snippets.

@webaka
Created March 29, 2015 19:45
Show Gist options
  • Save webaka/03fd4abb6e8eb1252a3d to your computer and use it in GitHub Desktop.
Save webaka/03fd4abb6e8eb1252a3d to your computer and use it in GitHub Desktop.
Firefox mix
# Bulk replace Firefox bookmarks
UPDATE moz_places
SET url = REPLACE (
url,
'http://newvegas.nexusmods.com/',
'http://www.nexusmods.com/newvegas/'
)
WHERE
url LIKE 'http://newvegas.nexusmods.com/%'
AND (
(
SELECT
count(*)
FROM
moz_places mp
WHERE
mp.url = REPLACE (
moz_places.url,
'http://newvegas.nexusmods.com/',
'http://www.nexusmods.com/newvegas/'
)
) = 0
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment