@ellane @obsidianmd
There is a Bulk Rename plugin. obsidian://show-plugin?id=obsidian-bulk-rename-plugin
this post was submitted on 12 Nov 2023
2 points (62.5% liked)
ObsidianMD
4156 readers
1 users here now
Unofficial Lemmy community for https://obsidian.md
founded 2 years ago
MODERATORS
@ellane @obsidianmd my obligatory “I change the links on the command line with perl” post
find . -name \*.md -print0 |xargs -0 perl -p -i -e 's/\[\[old name\]\]/[[new name|alias]]/‘
you can leave out “|alias" if not needed.