Bauer: 2024-08-05 15:21:40

This commit is contained in:
ralfk 2024-08-05 15:21:40 +02:00
parent 20eb17e0d0
commit 8c3db2a33f

View File

@ -32,3 +32,18 @@ Mal schauen wie das so in Unotes so geht
Mit Solarized Light sieht das besser aus Mit Solarized Light sieht das besser aus
Mit der tastatur geht es, aber mit dem stift nicht so gut Mit der tastatur geht es, aber mit dem stift nicht so gut
So ist das schon besser So ist das schon besser
## Splatting mit Hashtabellen
```
Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf
```
$HashArguments = @{
Path = "test.txt"
Destination = "test2.txt"
WhatIf = $true }
Copy-Item @HashArguments
```