Clear-History: add Dutch translation and update page (#19248)

This commit is contained in:
Dylan
2025-11-07 20:48:38 +00:00
committed by GitHub
parent c5d3045043
commit 3301a83493
2 changed files with 40 additions and 3 deletions
+37
View File
@@ -0,0 +1,37 @@
# Clear-History
> Verwijder vermeldingen uit de Powershell-sessie commandogeschiedenis.
> Opmerking: `clhy` kan gebruikt worden als een alias voor `Clear-History`.
> Meer informatie: <https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/clear-history>.
- Verwijder alle geschiedenis van de huidige sessie:
`Clear-History`
- Verwijder commando op exacte naam:
`Clear-History -CommandLine "{{commando}}"`
- Verwijder meerdere commando's op naam:
`Clear-History -CommandLine {{"commando1", "commando2", ...}}`
- Verwijder een specifiek geschiedenisvermelding op ID:
`Clear-History -Id {{id_nummer}}`
- Verwijder meerdere ID's:
`Clear-History -Id {{id1, id2, ...}}`
- Verwijder opdrachten binnen een bereik van ID's:
`Clear-History -Id ({{start_id}}..{{eind_id}})`
- Toon wat er verwijderd zou worden:
`Clear-History -WhatIf`
- Vraag om bevestiging voor het verwijderen:
`Clear-History -Confirm`
+3 -3
View File
@@ -1,6 +1,6 @@
# Clear-History
> A powershell command to clear the entries in the current session.
> Delete entries from the PowerShell session command history.
> Note: `clhy` can be used as an alias for `Clear-History`.
> More information: <https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/clear-history>.
@@ -14,7 +14,7 @@
- Clear multiple commands by name:
`Clear-History -CommandLine "{{command_1}}", "{{command_2}}"`
`Clear-History -CommandLine {{"command1", "command2", ...}}`
- Clear a specific history entry by ID:
@@ -22,7 +22,7 @@
- Clear multiple IDs:
`Clear-History -Id {{id_1}}, {{id_2}}, {{id_3}}`
`Clear-History -Id {{id1, id2, ...}}`
- Clear commands within a range of IDs: