MyFirstBrain/Eingang/Eingang.md
Ralfk a7d5f48002 iPad 11: 2024-12-14 16:42:01
Affected files:
Eingang/Eingang.md
2024-12-14 16:42:03 +01:00

17 lines
309 B
Markdown

## Splatting mit Hashtabellen
```
Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf
```
$HashArguments = @{
Path = "test.txt"
Destination = "test2.txt"
WhatIf = $true }
Copy-Item @HashArguments
- ``
Auch hier sollte ich schreiben Können
Und ja es geht
Nun keine sonderzeichen