Surface8: 2024-07-01 23:20:34

This commit is contained in:
ralfk 2024-07-01 23:20:34 +02:00
parent d6d8c6fdf6
commit 31cc29d772

14
Markdown-bearbeiten.ps1 Normal file
View File

@ -0,0 +1,14 @@
$path = "C:\Obsidian\Kommunikationstechnologie"
$hinzufuegen = "`n `n #unbearbeitet `n"
$file = Get-ChildItem -Recurse $path |?{$_.name -like "*.md"}
foreach($item in $file){
$inhalt = Get-Content $item.fullname
$inhalt = $inhalt + $hinzufuegen
$inhalt |Out-File $item.fullname -Encoding default
}