Personal
Obsidian Vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes.
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes.
/mnt/d/Obsidian Vault/AI Research/
Mostly flat at root level.
[[wikilinks]] syntax: [[Note Title]][[wikilinks]]# Search by filename
find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"
# Search by content
grep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"
[[wikilinks]] to related notes at the bottomgrep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"