#!/bin/bash# content-audit.sh - Extrahiert Frontmatter aus allen Postsecho"URL,Title,Description,Date,Categories,Tags"> content-audit.csv
for file in _posts/*.md;do
url=$(basename"$file" .md)title=$(grep-m1"^title:""$file" | sed's/title: *"*//;s/"*$//')desc=$(grep-m1"^description:\|^excerpt:""$file" | sed's/.*: *"*//;s/"*$//')date=$(grep-m1"^date:""$file" | sed's/date: *//')cats=$(grep-m1"^categories:""$file" | sed's/categories: *//')tags=$(grep-m1"^tags:""$file" | sed's/tags: *//')echo"\"$url\",\"$title\",\"$desc\",\"$date\",\"$cats\",\"$tags\"">> content-audit.csv
done
echo"Audit CSV created: content-audit.csv"
Nächste Schritte
Script ausführen oder manuell Posts inventarisieren
CSV in Google Sheets/Excel importieren
Status und Priorität für jeden Post festlegen
Zielkeywords recherchieren und zuweisen
Top 20 Posts optimieren (Metadaten)
Duplicate/Outdated Content-Plan erstellen
Batch-Updates durchführen
Verantwortlich: Content Team / Marcel Lehmann Review: Alle 3 Monate (nächster: Januar 2026)
📚 Training
Interested in training or personalized coaching to enhance your PowerPlatform skills? 🚀 Book a package with me at thepoweraddicts.ch and benefit from customized strategies for your success. 💡
📧 Stay Updated
Don't miss any PowerPlatform tips! Subscribe to my newsletter for exclusive insights and updates.