Skip to content

Instantly share code, notes, and snippets.

@DipandaAser
Last active May 31, 2021 11:14
Show Gist options
  • Save DipandaAser/ebfc39c31357e14d7fd975c81cd12a2a to your computer and use it in GitHub Desktop.
Save DipandaAser/ebfc39c31357e14d7fd975c81cd12a2a to your computer and use it in GitHub Desktop.
Replace substring in mongodb documents using NosqlBooster
db.File.find({}).forEach(function(document) {
if (document.PublicLink.startsWith("http")) {
document.PublicLink = document.PublicLink.replace("http", "https")
}
db.File.save(document)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment