1
0
obsidian-templates/zz_meta/shell/ttrpg/update_faction_metadata.sh
2026-01-10 14:30:32 -06:00

17 lines
353 B
Bash
Executable File

#!/bin/zsh
for file in **/*.md; do
echo "foo$file"
yq \
--front-matter="process" \
--inplace \
'
.tags = ["ttrpg/faction"] |
.icon = "users" |
.summary = .summary // "" |
.campaigns = ["[[Kingmaker|Kingmaker]]"] |
del(.type) |
del(.campaign)
' \
"${file}"
done